背景边框

来源:互联网 发布:网络拉近人际关系 编辑:程序博客网 时间:2024/05/11 13:26
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<!-- 实心 -->
<solid android:color="#FFFFFFFF" />
<!-- 渐变 -->
<!-- <gradient -->
<!-- android:angle="270" -->
<!-- android:endColor="#FFFFFF" -->
<!-- android:startColor="#ff8c00" /> -->
<!-- 描边 -->
<stroke
android:width="1px"
android:color="#CFCBC6" />
<!-- 圆角 -->
<corners android:radius="5dp" />

<!-- <padding -->
<!-- android:bottom="10dp" -->
<!-- android:left="10dp" -->
<!-- android:right="10dp" -->
<!-- android:top="10dp" /> -->

</shape>



<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<!-- 实心 -->
<solid android:color="#CFCBC6" />
<!-- 渐变 -->
<!-- <gradient -->
<!-- android:angle="270" -->
<!-- android:endColor="#FFFFFF" -->
<!-- android:startColor="#ff8c00" /> -->
<!-- 描边 -->
<stroke
android:width="1px"
android:color="#CFCBC6" />
<!-- 圆角 -->
<corners android:radius="5dp" />

<!-- <padding -->
<!-- android:bottom="10dp" -->
<!-- android:left="10dp" -->
<!-- android:right="10dp" -->
<!-- android:top="10dp" /> -->

</shape>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<!-- 填充颜色 -->
<solid android:color="#fff" >
</solid>
<stroke
android:width="1dp"
android:color="@color/hengshui" />
<!-- 矩形的圆角半径 -->
<corners android:radius="5dp" />

</shape>


0 0
原创粉丝点击