0

是否可以有一个定义布局(导航等)的抽象活动和一个定义活动内容的子类?xml布局文件怎么样?

我的意思是我有一个xml

 <xxx.DefaultNavigationDrawer xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/navigation_drawer"
android:layout_width="match_parent"
android:layout_height="match_parent" >

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

    <!-- Fragment contents go in here -->

</FrameLayout>

<ListView
    android:id="@+id/navigation_drawer_list"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:layout_weight="1"
    android:background="@drawable/calendar"
    android:choiceMode="singleChoice"
    android:divider="@color/calendar_divider"
    android:dividerHeight="1dp" />

</xxx.DefaultNavigationDrawer>

我希望我所有的活动都有这样的布局。唯一会改变的是标记。

4

1 回答 1

1

您可以在基Activity类中设置布局,然后在派生的 ActivityonCreate中调用以用片段FragmentManager.replace()替换您的内容。FrameLayout

于 2013-09-16T13:47:28.970 回答