1

こんにちは、ツールバーでこれを実現したいと思います。1 つの XML ファイルですべてのレイアウトを使用してそれを行う方法を説明する多くのチュートリアルを見てきました。

ここに画像の説明を入力

ただし、次のユースケースでこの問題を解決する方法がわかりません

ツールバーを定義する XML ファイルがあります

    <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar 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="wrap_content"
    android:background="@color/colorPrimary"
    android:paddingTop="@dimen/app_bar_top_padding"
    app:theme="@style/Base.ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

次に、フラグメントのコンテナとしてフレーム レイアウトを含むアクティビティ レイアウト (リニア レイアウト ルート) にこのツールバーを含めます。

<include
android:id="@+id/app_bar"
layout="@layout/app_bar" />

<FrameLayout
          android:id="@+id/container"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          >

これで、このフラグメントは動的に膨張し、フラグメントはリサイクラー ビューになります。CoordinatorLayout をこの一般的な配置にリンクする方法を教えてもらえますか?

ありがとう !

編集 この問題は解決しましたが、間違いがあれば教えてください

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

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <include layout="@layout/toolbar"/>

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

        <FrameLayout
            android:id="@+id/content"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </android.support.design.widget.CoordinatorLayout>

    <include layout="@layout/navigation_drawer"/>

</android.support.v4.widget.DrawerLayout>

スクロールフラグを持つ私のツールバーレイアウト

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/colorPrimary"
    android:minHeight="?attr/actionBarSize"
    app:layout_scrollFlags="scroll|enterAlways"
    android:theme="@style/ToolbarStyle"
    app:theme="@style/ToolbarStyle">
</android.support.v7.widget.Toolbar>
4

1 に答える 1