`
李村民
  • 浏览: 37539 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

android通过shape.xml制作渐变背景

阅读更多
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <gradient android:startColor="#509245" android:centerColor="#3e8532"
                android:endColor="#509245" android:type="linear" android:angle="90"
                android:centerX="0.5" android:centerY="0.5" />
        <padding android:left="7dp" android:top="7dp" android:right="7dp"
                android:bottom="7dp" />
        <corners android:radius="4dp" />
</shape>

android:shape 配置的是图形的形式,主要包括方形、圆形等,上边代码为方形。
gradient节点主要配置起点颜色、终点颜色、中间点的坐标、中间点的颜色、渐变角度(90度为上下渐变,0为左右渐变),padding节点主要配置上下左右边距,corners节点配置四周园角的半径。
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics