ナビゲーション ドロワーを実装しました。別の XML と別のアクティビティを作成しました。今、私はそのアクティビティをさまざまなアクティビティ内で使用したいと考えています。つまり、さまざまなアクティビティ内で同じナビゲーション ドロワーを使用したいと言えます。したがって、同じコードを膨らませてコードを減らし、さまざまなアクティビティ内を表示できます。
私のxmlコードは以下のようなものです:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/layout_map"/>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="#4a4a4c"
android:dividerHeight="1dp"
android:background="#393839"/>
</android.support.v4.widget.DrawerLayout>
これをできるだけ早く達成するためにあなたの助けが必要です。
ありがとう