2

我试着寻找通过几个SO回答这个问题,但他们都没有为我工作。不能风格选定抽屉项目的背景颜色

我正在尝试更改我的导航抽屉中选定项目的背景颜色(the gray)。

这里是我的代码:

menu_drawer

<?xml version="1.0" encoding="utf-8"?> 
<menu xmlns:android="http://schemas.android.com/apk/res/android"> 
    <group android:checkableBehavior="single"> 
     <item 
      android:icon="@drawable/ic_one" 
      android:id="@+id/nav_first_fragment" 
      android:title="One" 
      android:checked="true"/> 
     <item 
      android:icon="@drawable/ic_two" 
      android:id="@+id/nav_second_fragment" 
      android:title="Two" /> 
     <item 
      android:icon="@drawable/ic_three" 
      android:id="@+id/nav_third_fragment" 
      android:title="Three" /> 
    </group> 
</menu> 

activity_main

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v4.widget.DrawerLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/drawer_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <android.support.design.widget.CoordinatorLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:app="http://schemas.android.com/apk/res-auto" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <android.support.design.widget.AppBarLayout 
      android:id="@+id/appbar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
      app:elevation="0dp"> 

      <include 
       layout="@layout/toolbar" 
       /> 

      <android.support.design.widget.TabLayout 
       android:id="@+id/tabs" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       /> 

     </android.support.design.widget.AppBarLayout> 

     <android.support.v4.view.ViewPager 
      android:id="@+id/pager" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior" 
      /> 

    </android.support.design.widget.CoordinatorLayout> 

    <android.support.design.widget.NavigationView 
     android:id="@+id/nvView" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:background="@android:color/white" 
     app:menu="@menu/menu_drawer" /> 

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

请帮帮忙!

回答

1

检查与此属性

itemBackground

在你的颜色目录

然后有一个XML文件,这样

<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
<item android:color="#c0c0c0" android:state_checked="true" /> 
<item android:color="#ffffff" /> 
</selector> 

东西然后添加到NavigationView

应用:itemBackground = “@颜色/ nv_list”

更新:

入住这doc

+0

在哪里可以找到导航抽屉使用的各种状态? – user5382818

+0

@ user5382818,检查文档链接 –

0

把以下文件夹绘制:

list_selectoritem.xml

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 

    <item android:drawable="@drawable/list_item_bg_normal" android:state_activated="false"/> 
    <item android:drawable="@drawable/list_item_bg_pressed" android:state_pressed="true"/> 
    <item android:drawable="@drawable/list_item_bg_pressed" android:state_activated="true"/> 

</selector> 

list_item_bg_pressed.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle"> 
    <gradient 
     android:startColor="@color/list_background_pressed" 
     android:endColor="@color/list_background_pressed" 
     android:angle="90" /> 
</shape> 

list_item_bg_normal.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle"> 
    <gradient 
     android:startColor="@color/list_background" 
     android:endColor="@color/list_background" 
     android:angle="90" /> 
</shape> 

在color.xml

<color name="list_background">#E2231A</color> 
<color name="list_background_pressed">#C4BEB6</color> 
<color name="list_divider">#ffffff</color> 

然后将更改应用到你的抽屉的列表视图下面将下面的代码;

<ListView 
     android:id="@+id/list_slidermenu" 
     android:layout_width="300dp" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:choiceMode="singleChoice" 
     android:divider="@null" 
     android:dividerHeight="1dp"  
     android:listSelector="@drawable/list_selectoritem" 
     android:background="@color/list_background"/> 
相关问题