2

アプリケーションでツールバーを使用しており、このリンクを使用してツールバーを非表示にしていますが、期待どおりに完全に機能します。しかし、リストに 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>
4

2 に答える 2

0

ツールバーの高さを確認し (このメトリックをリストの高さに追加する必要があります)、setScrollFlags メソッドでツールバーの layoutparams を更新するのを忘れました。

ツールバーの高さを計算する簡単な方法は次のとおりです。

final TypedArray styledAttributes = context.getTheme().obtainStyledAttributes(new int[]{
      R.attr.actionBarSize});
int toolbarHeight = (int) styledAttributes.getDimension(0, 0);
styledAttributes.recycle();

lp を更新するには、メソッドの最後にこの行を追加する必要があります。

mTooolbar.setLayoutParams(params);

完全なコード:

private void setScrollIfNeeded() {
    int viewItemHeight = getResources().getDimensionPixelSize(R.dimen.dp); // list item size is fixed in this case
    int totalCount = mRecycleView.getAdapter().getItemCount();

    DisplayMetrics displaymetrics = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
    int height = displaymetrics.heightPixels;
    int width = displaymetrics.widthPixels;

    int listHeight = viewItemHeight * totalCount;

   final TypedArray styledAttributes = context.getTheme().obtainStyledAttributes(new int[]{
          R.attr.actionBarSize});
    int toolbarHeight = (int) styledAttributes.getDimension(0, 0);
    styledAttributes.recycle();

    listHeight += toolbarHeight;


    if (listHeight > height) {
        setScrollFlags(true);
    } else {
        setScrollFlags(false);
    }
}

public void setScrollFlags(boolean set) {
    AppBarLayout.LayoutParams params =
            (AppBarLayout.LayoutParams) mTooolbar.getLayoutParams();

    if (set){
        params.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL
                | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS);
    } else {
        params.setScrollFlags(0);
    }
    mTooolbar.setLayoutParams(params);
}
于 2016-01-19T11:43:06.227 に答える