我有一个FrameLayout,我想通过选择器为它应用前景drawable,我试图实现“drawSelectorOnTop”但是为了一个简单的布局
现在当用户按“state_pressed”时,选择器不适用
这是我的代码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/cell_background_selector" >
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#282828"
android:paddingBottom="5dp" >
..
......
........
</RelativeLayout>
</FrameLayout>
这是我的选择码:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/video_blank" android:state_pressed="true"/>
<item android:drawable="@drawable/fav_show"/>
</selector>
两个图像都存在,但FrameLayout始终将普通状态drawable应用为前景
答案 0 :(得分:12)
老问题,但是当我遇到类似的问题时,谷歌是第一次被击中。
您是否为FrameLayout设置了OnClick侦听器?如果没有,则永远不会使用按下状态。