gpt4 book ai didi

android - 隐藏安卓工具栏

转载 作者:行者123 更新时间:2023-11-29 19:51:05 29 4
gpt4 key购买 nike

我正在开发一个选项卡式应用程序,对于某些选项卡,我想隐藏工具栏。我将可见性设置为已消失以实现该目的。下面是我的 XML 文件,

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout android:id="@+id/main_content"
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:fitsSystemWindows="true"
>

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:visibility="gone"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay">

</android.support.v7.widget.Toolbar>



</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_gravity="bottom"
android:background="@color/offwhite"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>



</android.support.design.widget.CoordinatorLayout>

但我看到一些项目仍在屏幕的顶部。请检查屏幕截图。我做得对吗?有没有更好的隐藏工具栏的方法。

enter image description here

谢谢。

最佳答案

您可以使用以下代码以编程方式隐藏工具栏

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
toolbar.setVisibility(View.GONE);`

如果这不能解决问题,请尝试从您的 AppBarLayout 中删除,

android:paddingTop="@dimen/appbar_padding_top"

然后把你的工具栏改成这个

app:layout_scrollFlags="scroll"

这会解决你的问题

关于android - 隐藏安卓工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37144770/

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