6

セレクターを介してフォアグラウンドドローアブルを適用したいFrameLayoutがあります。「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は常にフォアグラウンドとして描画可能な通常の状態を適用します

4

1 に答える 1