アプリケーションでツールバーを使用しており、このリンクを使用してツールバーを非表示にしていますが、期待どおりに完全に機能します。しかし、リストに 1 つまたは 2 つの項目しかない場合は、ツールバーに十分なスペースがあるため、ツールバーをスクロールする必要はありません。下。
ツールバーを非表示にする目的は、リスト項目が画面の高さを超える場合にツールバーのスペースを利用することです。しかし、リスト項目が少ない場合、つまりデバイスの画面の高さよりも小さい場合、ツールバーをスクロールしたくありません。それを達成します。ティア。
コード :
<?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:fitsSystemWindows="true">
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include
android:id="@+id/my_awesome_toolbar"
layout="@layout/tool_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways" />
</android.support.design.widget.AppBarLayout>
<TextView
android:id="@+id/empty_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/no_matches_found"
android:visibility="gone" />
</android.support.design.widget.CoordinatorLayout>