您的位置:首页 > Web前端 > CSS

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

2015-01-12 15:28 405 查看
<?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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  xml color utf-8