码迷,mamicode.com
首页 > 其他好文 > 详细

shape的基本用法

时间:2017-05-05 17:22:11      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:文件   top   start   pad   tom   roi   add   用法   背景   

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <!-- 边角的圆弧半径 -->
    <corners android:radius="9dp" />

    <!-- 实心填充 -->
    <solid android:color="#00000000" />

    <!-- 描边:一般大小都是1dp -->
    <stroke
        android:width="1dp"
        android:color="#ff000000" />

    <!-- 四周留出来的空白,和xml文件中的pad效果一样,对内起作用 -->
    <padding
        android:bottom="30dp"
        android:left="20dp"
        android:right="30dp"
        android:top="20dp" />

    <!-- 背景颜色渐变 -->
    <gradient
        android:angle="90"
        android:endColor="#ff00ff00"
        android:startColor="#ff0000ff" />
    
</shape>

shape的基本用法

标签:文件   top   start   pad   tom   roi   add   用法   背景   

原文地址:http://www.cnblogs.com/ww668/p/6813571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!