我一直在寻找解决这个问题,但我似乎无法找到答案。我在此导航抽屉中有多个项目,其中每个项目都包含其他项目的菜单。父项具有与之关联的标题,我想更改文本颜色,但我似乎无法在任何地方找到答案。我真的很感激帮助,这是一个更准确地理解我的问题的图像。
Navigation Drawer: Android Studio
提前感谢您的帮助!
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:background="@color/colorPrimaryDark"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer"
app:itemTextColor="@color/white"
app:itemIconTint="@color/white" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:2)
如果您使用材料设计库中引入的NavigationView
,请添加以下属性以更改抽屉项目的颜色
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:itemBackground="@drawable/my_ripple" //sets background of the item
app:itemIconTint="@color/item_icon_color" //sets color of the drawer item icon
app:itemTextColor="@color/item_color" //sets color of the drawer item
....
/>
答案 1 :(得分:-1)
你把那样的导航视图。
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/colorContentBG">
<include layout="@layout/nav_header_main" />
<ListView
android:entries="@array/test"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listMenu"
android:dividerHeight="0dp"
android:divider="@android:color/transparent"/>
</LinearLayout>
</android.support.design.widget.NavigationView>
以及列表视图的任何ui设计。