我如何强制显示BottomAppBar?我正在使用viewpager,而我的BottomAppBar具有hideOnScroll属性。我在viewpager中的第一个标签是可滚动的。向下滚动第一个片段后,底部的应用栏消失,然后,当我转到视图分页器的第二个选项卡(该页面不可滚动)时,底部的应用栏将不再显示。
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
app:layout_dodgeInsetEdges="bottom"
android:id="@+id/viewpagerRl"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.viewpager.widget.ViewPager
android:id="@+id/flContent"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottomAppbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:backgroundTint="@color/colorPrimary"
app:fabAlignmentMode="end"
app:fabCradleRoundedCornerRadius="20dp"
app:hideOnScroll="true"
app:layout_scrollFlags="scroll|enterAlways"
app:navigationIcon="@drawable/ic_hamburger"
app:theme="@style/MerchantBottomAppBar" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add_white"
app:fab_size="normal"
app:layout_anchor="@id/bottomAppbar"
app:layout_anchorGravity="center" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
答案 0 :(得分:0)
以编程方式,您可以调用“ performShow”。
上的文档