gpt4 book ai didi

java - 当滑动到不同的 viewpager 页面时,如何使以前使用 layout_scrollFlags 隐藏的工具栏再次可见

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:35:31 24 4
gpt4 key购买 nike

<分区>

目前,我有以下带有 ViewPager 的页面

enter image description here

INFO标签中的页面滚动时,工具栏将被隐藏。此行为是通过 CoordinatorLayoutAppBarLayoutapp:layout_scrollFlags

实现的
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent">


<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp"
android:elevation="0dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" >

<android.support.v7.widget.Toolbar
app:layout_scrollFlags="scroll|enterAlways|snap"

android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="@android:color/transparent"
app:elevation="0dp"
android:elevation="0dp"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabIndicatorColor="?attr/detailedStockTabIndicatorColor" />
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

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

所以,这是滚动后的样子。

Scroll后隐藏Toolbar

enter image description here

因为这是一个 ViewPager,如果我滑动到 FINANCIAL 选项卡,它将如下所示。

跟着滑动

enter image description here

由于 FINANCIAL 选项卡中的页面不可滚动,我们希望不要隐藏 Toolbar

我想知道,当滑动到不同的 ViewPager 页面时,如何使之前使用 layout_scrollFlags 隐藏的工具栏再次可见?

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