shape的使用

来源:互联网 发布:1688货源网淘宝店铺 编辑:程序博客网 时间:2024/06/14 13:35
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" ><!-- 圆角 --><corners     android:radius="10dp"/><!-- 渐变 --><gradient     android:startColor="#ff0000"    android:endColor="#0000ff"/><!-- 间距 --><padding     android:left="50dp"/><!-- 大小 --><size     android:height="200dp"/><!-- 固定的颜色,会对渐变进行覆盖 --><solid     android:color="#00ff00"/><!-- 边框 --><!-- android:dashWidth="10dp"设置每小段的长度 --><!-- android:dashGap="5dp"设置每小段的间隔 --><stroke     android:width="1dp"    android:color="#ff0000"    android:dashWidth="10dp"    android:dashGap="5dp"/></shape>
0 0
原创粉丝点击