文本不会出现在TextView中

时间:2017-12-17 09:44:31

标签: android xml user-interface

我正在Android应用中制作导航抽屉。导航抽屉有一个标题,其中包含帐户图标文本视图。但是当我运行App时,我再也看不到Icon或TextView了。

这就是我所得到的,

enter image description here

以下是我的导航抽屉 <?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" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.vishistvarugeese.ongc_app.AdminActivity"> <android.support.design.widget.NavigationView app:headerLayout="@layout/admin_nav_header" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:layout_alignParentTop="true" android:background="@color/white" app:itemIconTint="@color/black" app:itemTextColor="@color/colorAccent" app:menu="@menu/admin_menu" android:layout_gravity="start" app:theme="@style/menu_style"> </android.support.design.widget.NavigationView>

的代码
admin_nav_header.xml

这是我的导航标题的代码, <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="160dp" android:background="@drawable/headernav" android:paddingTop="20dp" android:paddingLeft="20dp" android:paddingRight="20dp"> <ImageView android:layout_width="70dp" android:layout_height="70dp" android:src="@drawable/ic_account_circle_white_48dp"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/navUserName" android:text="@string/name" android:textStyle="bold" android:textColor="@color/white" android:layout_marginTop="10dp"/> </LinearLayout>

i

这就是我想要做的事情

enter image description here

有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

从NavigationView中删除主题和其他属性。

<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:background="@color/homeDrawerColor"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/admin_nav_header"
        app:menu="@menu/admin_menu" />

如果不起作用,那么给出一个直接的字符串来检查string.xml中的任何问题......