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

用shape结合selector实现点击效果

时间:2014-10-27 21:19:42      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:用shape实现点击效果   android开发   用颜色值实现点击效果   shape   android   

<span style="font-family:Arial, Helvetica, sans-serif;font-size:18px;background-color: rgb(255, 255, 255);">有时候美工为了省事,不给我们图片,没办法,也不能得罪美工呀,但是我们可以用颜色实现我们的点击效果呀!</span>

<span style="font-family: Arial, Helvetica, sans-serif;"><?xml version="1.0" encoding="UTF-8"?></span>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <gradient
        android:angle="90"
        android:endColor="#ffff99"
        android:startColor="#ffff99" />

    <corners android:radius="20dp" />

</shape>


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

    <gradient
        android:angle="90"
        android:endColor="#cc3935"
        android:startColor="#cc3935" />

    <corners android:radius="20dp" />

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

    <item android:drawable="@drawable/red_shape" android:state_pressed="true"/>
    <item android:drawable="@drawable/gray_shape"/>

</selector>
自己动手,丰衣足食!!!!!!!!!!

用shape结合selector实现点击效果

标签:用shape实现点击效果   android开发   用颜色值实现点击效果   shape   android   

原文地址:http://blog.csdn.net/xiaoyuan511/article/details/39667525

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