微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

xml设置渐变+阴影的背景

btn_simpale_normal.xml

<?xmlversion ="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item>
        <shape>
            <corners android:radius="25dp" />

            <gradient 
                android:startColor="#999999"
                android:angle="90"
                android:endColor="#E4E4E4"
                android:type="linear" />
        </shape>
    </item>
    <item
        android:bottom="3px"
        android:left="1px"
        android:right="2px"
        android:top="1px">
        <shape>
            <corners android:radius="25dp" />

            <gradient
                android:angle="90"
                android:endColor="#FFFFFF"
                android:startColor="#cccccc"
                android:type="linear" />
        </shape>
    </item>

    </layer-list>


btn_simpale_pressed.xml

<?xmlversion ="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item>
        <shape>
            <corners android:radius="25dp" />

            <gradient 
                android:startColor="#999999"
                android:angle="90"
                android:endColor="#E4E4E4"
                android:type="linear" />
        </shape>
    </item>
    <item
        android:bottom="1px"
        android:left="1px"
        android:right="1px"
        android:top="1px">
        <shape>
            <corners android:radius="25dp" />

            <gradient
                android:angle="90"
                android:endColor="#cccccc"
                android:startColor="#FFFFFF"
                android:type="linear" />
        </shape>
    </item>

    </layer-list>



select_button_simple.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:state_pressed="true" android:drawable="@drawable/btn_simpale_pressed"></item>
	<item android:drawable="@drawable/btn_simpale_normal"></item>
</selector>


原文地址:https://www.jb51.cc/xml/300401.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。