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

android 背景边框变圆角

2013-01-17 18:31 218 查看


android 背景边框变圆角

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="5dip" android:color="#FFFF00" /><!-- 描边 :边框宽度与颜色 -->

<padding android:left="20dip" android:top="0dip" android:right="0dip" android:bottom="0dip" /><!-- 主要内容的padding 文字距离上下左右的距离 -->

<corners android:topLeftRadius="15dip"

android:topRightRadius="15dip"

android:bottomLeftRadius="0dip"

android:bottomRightRadius="0dip"/><!-- 圆角的半径 也可以统一设置半径 android:radius="9dip"-->
<gradient android:startColor="#ff8c00" android:endColor="#FFFFFF" android:angle="270" /> <!-- 渐变 -->

<solid android:color="#FFEFD5" /> <!-- 没有描边的中间部分 --><!--solid 与 gradient 只能显示在代码最后那个-->

</shape>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: