虽然很easy,不过还是录制。
混合参观
在drawable文件下 创建一个布局文件corners_bg.xml
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android">
- <solid android:color="#000000" /> //圆角View的背景颜色
- <corners android:topLeftRadius="10dp" //上左圆角
- android:topRightRadius="10dp" //上右圆角
- android:bottomRightRadius="10dp"
- android:bottomLeftRadius="10dp"/>
- </shape>
一般。四个圆角都是一样的,能够简单的写为:
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android">
- <solid android:color="#000000" />
- <corners android:radius="5dp"/>
- </shape>
- android:background="@drawable/corners_bg"
版权声明:本文博主原创文章。博客,未经同意不得转载。