您的位置:首页 > 其它

selector+shape

2016-04-12 13:04 316 查看
selector

<?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_grey_shape" />

<item android:state_enabled="false"

android:drawable="@drawable/btn_grey_shape" />

<item android:drawable="@drawable/btn_pink_shape"></item>

</selector>

shape

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<corners android:radius="@dimen/radius"/>

<solid android:color="@color/pink"/>

</shape>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: