2

Android アプリケーションに Navigation Drawer を使用しています。ナビゲーション ドロワーに項目を表示するためにリストビューを使用しています。リストビューに Listitem 状態色を使用したいのですが、機能せず、状態ごとに異なる色が表示されません。私のコードは次のとおりです。

navigation_drawer.xml

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <!-- The main content view -->

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <!-- The navigation drawer -->

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="280dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@drawable/navigation_item_selector"
        android:cacheColorHint="#00000000"
        android:choiceMode="singleChoice"
        android:divider="@color/side_navigation_list_divider_color"
        android:dividerHeight="1dp" />

</android.support.v4.widget.DrawerLayout>

navigation_item_selector.xml

    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
    <item android:drawable="@color/gray_back" android:state_pressed="true"/>
    <item android:drawable="@color/red" android:state_activated ="true" android:state_selected="true"/>
    <item android:drawable="@drawable/abs__ab_solid_light_holo"/>

</selector>
4

0 に答える 0