我正在尝试将颜色选择器分配给一个扩展的LinearLayout类,所以,我认为如果我们谈论linearLayout就是这样。
我按照this帖子上的说明,答案谈论形状。
现在我在drawables文件夹上有3个xml:
normal.xml文件
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#ffffffff" />
</shape>
pressed.xml文件
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#00000000" />
</shape>
最后是bg.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/pressed" />
<item android:state_focused="true" android:drawable="@drawable/pressed" />
<item android:state_selected="true" android:drawable="@drawable/pressed" />
<item android:drawable="@drawable/normal" />
</selector>
我通过以下方式访问此内容:
Drawable d = getResources().getDrawable(context.getResources().getIdentifier("mypackageuri.tProject:drawable/bg", null, null));
view.setBackgroundDrawable(d);
“正常”状态很好,颜色设置为“normal.xml”,但与其他颜色无关,我按下我的视图,没有任何反应,它不会以任何方式改变颜色......
我看不出我做错了什么......
谢谢
答案 0 :(得分:22)
您需要点击您的观点才能在点击状态时获得状态pressed
。
使用:
view.setClickable(true);
或布局xml:
android:clickable="true"