我正在创建一个Android应用,它在布局中有一个导航抽屉:
<?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">
<include
layout="@layout/navigation_select_layout"
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"
app:headerLayout="@layout/navigation_drawer_header_layout"
app:menu="@menu/main_drawer_options" />
</android.support.v4.widget.DrawerLayout>
navigation_drawer_header_layout
:
<?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="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/textViewButtonCloseDrawer"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:gravity="center"
android:text="X"/>
</RelativeLayout>
添加标题布局但未显示,除非我为TextView添加上边距或向RelativeLayout添加一些填充文本向下推送TextLayout。
为什么它不会在标题布局中定义?为什么需要推出布局才能显示它?
答案 0 :(得分:2)
从评论中可以看出,您有一个ToolBar
隐藏了内容,而不是始终高于它。在这里查看这个可能解决您问题的答案: