您的位置:首页 > 移动开发 > Android开发

android 自定义边框和背景

2014-03-03 00:03 295 查看
<?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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: