0

線形レイアウトが coordinatorlayout に含まれている linearLayout にボタンと recyclerview を追加しようとしているという問題があります。私が抱えている問題は、スクロール動作をlinearLayoutに適用すると、ボタンがアクションバーとは反対に上下にスクロールすることです。ハーフ アクションバー ハーフ ボタンrecyclerview とボタンにスクロール動作を適用すると、recycler ビューの上部がアクション バーの後ろに隠れます。

私のレイアウトは次のようになります。

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/coordinator_layout"

    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:minHeight="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"
            android:theme="@style/Theme.AppCompat.NoActionBar"
            app:popupTheme="@style/Theme.AppCompat.NoActionBar">

            <android.support.v7.widget.SearchView
                android:id="@+id/recommender_search_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:theme="@style/Theme.AppCompat.NoActionBar"
                app:popupTheme="@style/Theme.AppCompat.NoActionBar"/>

            </android.support.v7.widget.Toolbar>

    </android.support.design.widget.AppBarLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/contacts_recycler_view"
            android:layout_height="0dp"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:background="@color/recommender_divider"/>

        <Button
            style="@style/GrapeFullscreenButtonPrimary"
            android:id="@+id/send_button"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:text="Send (0)"/>

    </LinearLayout>

</android.support.design.widget.CoordinatorLayout>

fitSystemWindow プロパティをいじりましたが、運が悪く、前述のように複数のシナリオでスクロール動作を試しました。私はしばらくの間この問題と戦ってきました。どんな助けでも大歓迎です。

4

1 に答える 1

2

OK、次の手法を使用して同じ効果を得ることができます。


変化する

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/contacts_recycler_view"
        android:layout_height="0dp"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:background="@color/recommender_divider"/>

    <Button
        style="@style/GrapeFullscreenButtonPrimary"
        android:id="@+id/send_button"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="Send (0)"/>

</LinearLayout>'

 <android.support.v7.widget.RecyclerView
        android:id="@+id/contacts_recycler_view"
        android:layout_height="0dp"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:background="@color/recommender_divider"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:paddingBottom="[your button's height]"/>

    <Button
        style="@style/GrapeFullscreenButtonPrimary"
        android:id="@+id/send_button"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_gravity="bottom"
        android:text="Send (0)"/>'



:

appbar_scrolling_view_behaviorRecyclerView実装の一部として下に移動します。Buttonこれが、しっかりとした背景が必要な理由です。そうしないと、RecyclerViewその下の一部が表示されます。

于 2015-11-06T15:15:34.730 に答える