gpt4 book ai didi

android - 当 tablayout 位于底部时如何在滚动时隐藏 tabLayout

转载 作者:行者123 更新时间:2023-11-29 18:36:59 31 4
gpt4 key购买 nike

我已将 tab_layout 放在屏幕底部。我希望它在向上滚动时隐藏并在向下滚动时重新出现。

我试过折叠工具栏布局,但没有用。这是我使用折叠工具栏布局后的代码。建议我一个新的方法,或者指出错误。或者告诉如何在 java 类中以编程方式实现它。

我的代码在这里:

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/home_coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="org.kashiyatra.ky18.HomeActivity">

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark"
app:popupTheme="@style/AppTheme.PopupOverlay" />

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

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

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:layout_scrollFlags="scroll|enterAlwaysCollapsed">

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:background="@color/pink"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:tabContentStart="80dp"
app:tabGravity="center"
app:tabTextColor="@color/white"
app:tabIndicatorColor="@color/dark"
app:tabSelectedTextColor="@color/dark"
app:tabTextAppearance="@style/myTabText"
tools:ignore="NotSibling" />

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

</RelativeLayout>

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

最佳答案

你应该使用 bottombar 而不是 tabbar

按照这个:

https://android.jlelse.eu/scroll-your-bottom-navigation-view-away-with-10-lines-of-code-346f1ed40e9e

博客可以卖你的问题

关于android - 当 tablayout 位于底部时如何在滚动时隐藏 tabLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53919251/

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