Android 圆角View设置 圆角边框
Posted TeddyYan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 圆角View设置 圆角边框相关的知识,希望对你有一定的参考价值。
圆角的Veiw XML
<shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="@color/gray_white" /> 背景颜色 <corners android:radius="5dp" /> 圆角大小 </shape>
随意定义某个角是圆角加边框
<shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="@color/white" /> <stroke android:width="1dp" android:color="@color/pinkishGrey"></stroke> 边框 <corners android:bottomLeftRadius="15dp" 左下圆角 android:topLeftRadius="15dp"/> 左上圆角 </shape>
以上是关于Android 圆角View设置 圆角边框的主要内容,如果未能解决你的问题,请参考以下文章
storyboard或者Xib给View设置边框属性(颜色,宽度,圆角)