У меня есть XML файл, подобный этому:
<androidx.constraintlayout.widget.ConstraintLayout 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">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_main"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_constraintTop_toTopOf="parent" />
<WebView
android:id="@+id/webview_main"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar_main" />
</androidx.constraintlayout.widget.ConstraintLayout>
Я хочу скрыть панель инструментов при просмотре веб-просмотра. Поэтому напишите этот код:
webView.setOnScrollChangedCallback(new CustomWebView.OnScrollChangedCallback() {
@Override
public void onScroll(int l, int t, int oldl, int oldt) {
if (t > oldt) {
toolbar.animate().translationY(-actionBarSize).setDuration(200);
toolbar.setVisibility(View.GONE);
} else if (t < oldt) {
toolbar.animate().translationY(0).setDuration(200);
toolbar.setVisibility(View.VISIBLE);
}
}
});
Итак, когда я прокручиваю веб-просмотр, страница прокручивается со многими задержками.
Когда я удаляю toolbar.setVisibility (...) из кода, проблема задержки решена, но, когда панель инструментов исчезла, в верхней части экрана появляется пустое пространство.
Как решить эту проблему?