web-dev-qa-db-ja.com

フラグメントを「スクロールビュー」として使用するコーディネーターレイアウトの使用方法

フラグメントを「スクロールビュー」としてホストするappbarレイアウトでコーディネーターレイアウトを使用しようとしています。フラグメントは、recyclerViewと、次のようにボタンを保持する下揃えのレイアウトで構成されます。

enter image description here

ただし、下部のセクションはデフォルトで非表示になっています。

enter image description here

スクロールした後にのみ表示されます。

私の活動クラスから:

    @Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    TestFragment fragment = (TestFragment) getFragmentManager().findFragmentByTag("Test");
    if (fragment == null)
        fragment = new TestFragment();

    getFragmentManager().popBackStack();

    FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();

    fragmentTransaction.replace(R.id.fragment_container, fragment, "Test");
    fragmentTransaction.commit();
}

アクティビティレイアウト:

<RelativeLayout 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.support.design.widget.CoordinatorLayout
        Android:id="@+id/main_content"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:orientation="vertical">

        <FrameLayout
            Android:id="@+id/fragment_container"
            Android:layout_width="match_parent"
            Android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

        <Android.support.design.widget.AppBarLayout
            Android:id="@+id/appbar"
            Android:layout_width="match_parent"
            Android:layout_height="wrap_content"
            Android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            <Android.support.design.widget.TabLayout
                Android:id="@+id/tabs"
                Android:layout_width="match_parent"
                Android:layout_height="?attr/actionBarSize"
                app:layout_scrollFlags="enterAlways|scroll"
                app:tabGravity="fill"
                app:tabMode="fixed"/>

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

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

</RelativeLayout>

フラグメントレイアウト:

<RelativeLayout 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.support.v7.widget.RecyclerView
        Android:id="@+id/recyclerView"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_above="@+id/bottomView"
        Android:scrollbars="vertical"
        Android:visibility="visible"/>

    <RelativeLayout
        Android:id="@+id/bottomView"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_alignParentBottom="true"
        Android:background="#d4285d"
        app:layout_scrollFlags="enterAlways">

        <Button
            Android:id="@+id/button"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:text="Do something..."
            Android:textSize="14sp"/>

    </RelativeLayout>
</RelativeLayout>

ここでの最終目標は、フラグメントの下部のバーを常に画面に表示し、リサイクラービューでアプリバーをスクロールして離すことです。

これは可能ですか?

皆さんありがとう!

8
Zach

現時点ではこれを行うことは不可能のようです(永遠に?)。

https://code.google.com/p/Android/issues/detail?id=177195

3
Zach