在NavigationDrawer中奇怪地选出项目

时间:2019-06-27 12:04:44

标签: android xml navigation-drawer

当我在NavigationDrawer中选择一个项目时,我的行为非常混乱。看起来像这样here you can see a screenshot, i singled out the selected item

我想要得到一个行为like this(例如可以从android studio创建的navigationDrawer活动中) 我尝试应用主题

<style name="TextAppearance">
    <item name="colorControlHighlight">@color/activated_color</item>
</style>

但这没有帮助,相关性相同,这是一些代码: 主要活动中的navigationDrawer

<android.support.design.widget.NavigationView
    android:theme="@style/TextAppearance"
    android:id="@+id/nav_viewInMain"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    app:headerLayout="@layout/nav_header_main"
    app:menu="@menu/drawer" />

商品代码:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="15dp"
    android:paddingBottom="15dp">

    <TextView
        android:id="@+id/tw_list_item"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:focusable="false"
        android:fontFamily="@font/helvetica_43"
        android:gravity="center_vertical"
        android:textAllCaps="false"
        android:textColor="@color/colorForMainText"
        android:textSize="20sp" />
</RelativeLayout>

应用程序条形码(可能与其有关)

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar 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="wrap_content"
    app:elevation="0dp"
    app:subtitleTextAppearance="@style/ToolbarSubtitleAppearance"
    app:theme="@style/CoolTheme"
    app:titleTextAppearance="@style/ToolbarTitleAppearance"></android.support.v7.widget.Toolbar>

<style name="CoolTheme" parent="Theme.AppCompat.Light">
<item name="android:background">@color/colorPrimary</item>

colorPrimary是#efefef 清单中的主要样式

<style name="CustomToolbarStyle" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:background">@color/colorPopup</item>
<item name="elevation">0dp</item>

colorPopup是#FFFFFF

1 个答案:

答案 0 :(得分:0)

像这样创建您的NavigationDrawer活动-

右键单击活动->新建->活动-> Naigation Drawer活动。

这将解决您的问题!