TextView、Button的点击改变背景

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/mo_feng_/article/details/80846178

对于TextView、Button,点击时可以改变背景,松手之后恢复,state_pressed才可以生效

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

猜你喜欢

转载自blog.csdn.net/mo_feng_/article/details/80846178