gpt4 book ai didi

android - 在 ViewPager 中切换页面时显示工具栏

转载 作者:太空狗 更新时间:2023-10-29 16:14:31 26 4
gpt4 key购买 nike

我之前搜索过 Stack Overflow,但没有找到适合我的问题的答案。

我有一个带有协调器布局的 Android 应用程序,其中有一个嵌套的 ViewPager。如果我 ScrollView 寻呼机中第一个 fragment 内部的 RecyclerView,工具栏将按预期隐藏和显示。但是,我在 ViewPager 中的其他 fragment 没有嵌套滚动,所以如果工具栏在 ViewPager 页面更改时隐藏,我想显示它。我想知道我是否可以扩展 CoordinatorLayout 行为来很好地完成它。

提前致谢!如果需要,我很乐意提供更多详细信息。

大概的代码是(试图去除所有不必要的东西):main_activity.xml

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/toolbar" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/tab_layout"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>

和一个滚动 fragment :fragment.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<android.support.v7.widget.CardView
android:id="@+id/add_word_card"
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<RelativeLayout
android:id="@+id/add_word_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/highlight">
<!-- some unrelated stuff -->
</RelativeLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.RecyclerView
android:id="@+id/list"
android:layout_below="@id/add_word_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:context=".MainActivity"/>

我发现了几个相关的问题,例如:thisthis .但他们主要关注布局问题,而我想了解是否真的有一个很好的解决方案来按需触发工具栏移动。

最佳答案

所以看起来答案如下:将 Toolbar 包装在 AppBarLayout 中,并在代码中使用如下内容:appBarLayout.setExpanded(false, true );

这对我有用。

关于android - 在 ViewPager 中切换页面时显示工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33248782/

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