我已经实现了导航抽屉。我创建了单独的 XML 以及单独的 Activity。现在我想在不同的活动中使用那个活动。所以我们可以说我想在不同的活动中使用相同的导航抽屉。所以我可以通过膨胀相同的代码和查看不同的活动来减少我的代码。
我的 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>
我需要你的帮助来尽快实现这一目标。
谢谢