圆角、描边背景样式,XML文件

来源:互联网 发布:如何评价汤灿 知乎 编辑:程序博客网 时间:2024/05/19 17:08
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <!-- 渐变 <gradient android:startColor="#fff" android:endColor="#fff" android:angle="270" /> --> <!-- 描边 --> <stroke android:width="0.5dp" android:color="#E8E8E8" /> <!-- 实心 --> <solid android:color="#fff" /> <!-- 圆角 --> <corners android:bottomRightRadius="5dip" android:bottomLeftRadius="5dip" android:topLeftRadius="5dip" android:topRightRadius="5dip" /> </shape> 


0 0
原创粉丝点击