android 自定义边框和背景

来源:互联网 发布:网络电视外置无线网卡 编辑:程序博客网 时间:2024/06/05 00:07
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

 <solid 
     android:color="#FFFFFF"/>
 <stroke 
     android:width="1dp"
     android:color="#808080"/>


<corners
android:bottomLeftRadius="5dip"
android:bottomRightRadius="5dip"
android:topLeftRadius="5dip"
android:topRightRadius="5dip" />

</shape> 
0 0
原创粉丝点击