android 背景边框变圆角

来源:互联网 发布:floyd算法举例 编辑:程序博客网 时间:2024/05/16 09:14

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>

原创粉丝点击