Android中给TextView的Background设置selector不生效的问题解决

TextView中设置selector不生效

给TextView的selector设置属性android:state_pressed

错误的的selector代码示例:

javascript 复制代码
// selector不生效代码示例
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/yt_bg_normal_btn_tire" android:state_selected="false"/>
    <item android:drawable="@drawable/yt_bg_press_btn_tire" android:state_selected="true"/>
</selector>

正确的selector代码示例:

javascript 复制代码
// selector有效代码示例
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/yt_bg_normal_btn_tire" android:state_pressed="false"/>
    <item android:drawable="@drawable/yt_bg_press_btn_tire" android:state_pressed="true"/>
</selector>
相关推荐
YB13754 小时前
jetpack compose 副作用 SideEffect
android·kotlin
CHB5 小时前
uni-app x 蒸汽模式 性能测试基准报告 Benchmark【Android版】
android·ios·uni-app
带娃的IT创业者7 小时前
拆掉那堵墙:LibrePods 如何让 AirPods 在 Android 上重获新生
android·开源项目·airpods·librepods·生态解锁
_阿南_8 小时前
flutter 展示的字体突然奔放了
android·flutter·ios
文人sec11 小时前
MySQL事务与索引做了什么?
android·笔记·mysql
刘洋浪子12 小时前
AndroidStudio保存日志菜单
android
朱涛的自习室12 小时前
从 Prompt 到 Graph:AI 工程的进化史
android·前端·人工智能
2501_9327502612 小时前
Android 中 Serializable 与 Parcelable 的对比与选择
android
FungLeo13 小时前
Flutter 两个反直觉布局坑:ListTile 水波纹 / VerticalDivider 踩坑实录
android·flutter
1570925113414 小时前
ViewBinding与DataBinding区别与选型
android