gpt4 book ai didi

Android 隐藏 NavigationView 标题

转载 作者:搜寻专家 更新时间:2023-11-01 07:49:33 25 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序,它需要 ToolBar 下方的 DrawerLayout。我已经实现了,但 NavigationView 的标题即 Status Bar 24dp 即使在删除标题后也是可见的。有办法去除吗?

Problem

XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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"
android:orientation="vertical"
>

<include
layout="@layout/app_bar_home"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<android.support.v4.widget.DrawerLayout
android:layout_marginTop="?android:attr/actionBarSize"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<android.support.design.widget.NavigationView
android:paddingBottom="0dp"
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@null"
app:menu="@menu/activity_home_drawer"/>

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

最佳答案

试试这个:

View headerView = navigationView.inflateHeaderView(R.layout.nav_header_home);

headerView.setVisibility(View.GONE);

并从您的 xml 中删除行 app:headerLayout="@null"。

关于Android 隐藏 NavigationView 标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36979230/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com