gpt4 book ai didi

android - fitSystemWindows 仅适用于选项卡的一个 fragment

转载 作者:太空狗 更新时间:2023-10-29 14:41:32 25 4
gpt4 key购买 nike

我正在使用一个在主要 Activity 中有 3 个选项卡的应用程序。第二个选项卡的 fragment 有一个带有标题的 NestedScrollView,应该适合系统窗口。选项卡 fragment 的其余部分应该是正常的,上面有工具栏。我尝试实现此要求是设置 setFitsSystemWindows(true) 如果当前选项卡是第二个,否则将其设置为 false。它在第一次运行时(在第一个选项卡上)起作用,然后转到第二个选项卡,但在返回到第一个选项卡时出现错误。返回第一个选项卡时似乎将其设置为 false 使我的工具栏适合系统窗口。 This is the screenshot of the toolbar when going back to 1st tab

下面是我的 MainActivity xml 代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">

<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:elevation="0dp">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:contentInsetStart="0dp"
app:navigationIcon="@drawable/ic_search"
app:title="Our Menu" />

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

<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<au.com.appetiser.youfoodz.widgets.bottom_navigation.BottomNavigationLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:orientation="vertical"
app:layout_behavior="au.com.appetiser.youfoodz.view.GenericBottomBehavior">

<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="bottom"
android:background="@android:color/white"
app:elevation="0dp"/>
</au.com.appetiser.youfoodz.widgets.bottom_navigation.BottomNavigationLayout>

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

在代码中,我在切换选项卡时将 bool 值设置为 setFitsSystemWindows,如下所示:

  @Override
public void onTabTransaction(Fragment currentFragment, int i) {
rootLayout.setFitsSystemWindows(currentFragment instanceof SecondFragment);
}

最佳答案

经过数周的反复试验,我终于解决了这个问题。这是一个肮脏的解决方法,但完成了事情。我在 CoordinatorLayout 顶部添加了一个 FrameLayout 父级。我将 android:fitsSystemWindows="true" 设置为我的 CoordinatorLayoutAppBarLayout。在 onTabTransaction 上,我将 AppBarLayoutfitsSystemWindows 设置为 false 而不是 rootLayout我的 CoordinatorLayout

xml:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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.support.design.widget.CoordinatorLayout
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:background="@android:color/white">

<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:background="@android:color/transparent"
app:elevation="0dp">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:contentInsetStart="0dp"
app:navigationIcon="@drawable/ic_search"
app:title="Our Menu"/>

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

<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<au.com.appetiser.youfoodz.widgets.bottom_navigation.BottomNavigationLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:orientation="vertical"
app:layout_behavior="au.com.appetiser.youfoodz.view.GenericBottomBehavior">

<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="bottom"
android:background="@android:color/white"
app:elevation="0dp"/>
</au.com.appetiser.youfoodz.widgets.bottom_navigation.BottomNavigationLayout>

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

java代码:

  @Override
public void onTabTransaction(Fragment currentFragment, int i) {
appBarLayout.setFitsSystemWindows(currentFragment instanceof SecondFragment);
}

输出:

enter image description here

关于android - fitSystemWindows 仅适用于选项卡的一个 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47406359/

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