我在家庭布局活动中使用以下代码。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
tools:context=".MainActivity">
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_navigation"
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
app:backgroundTint="@android:color/white"
app:fabCradleMargin="16dp"
app:fabCradleRoundedCornerRadius="8dp"
app:hideOnScroll="true"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@android:color/white"
app:itemTextColor="@android:color/white"
app:elevation="0dp"
android:elevation="0dp"
app:layout_scrollFlags="scroll|enterAlways"
tools:ignore="BottomAppBar">
<include
android:id="@+id/nav_bar"
layout="@layout/bottom_navigation_bar" />
</com.google.android.material.bottomappbar.BottomAppBar>
</RelativeLayout>
我想在滚动Web视图时隐藏底部的应用程序栏。我当然包括了hideOnScroll并将其设置为true。不幸的是,它永远不会隐藏在滚动上。我错过了什么吗?
答案 0 :(得分:1)
尝试一下:
webView.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
if(event.getAction() == MotionEvent.ACTION_MOVE){
//Your Code to hide bottom bar
}
}
});