我有一個包含該結構的BaseActivity:重新覈准佈局butterknife
<!-- activity_base -->
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<include
layout="@layout/tool_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true" />
<include
layout="@layout/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/tool_bar"
android:layout_above="@id/bottom_navigation" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:menu="@menu/bottom_navigation_menu" />
</RelativeLayout>
在我BaseActivity
我控制BottomNavigationView
。我創建了幾個活動,我想利用包含內容並只加載該活動的內容。 今天該項目正在使用butterknife
Java。而且該項目越來越龐大,因爲它正在複製每個子活動的頂層結構BaseActivity
。我想重構(以最好和最快的方式)該項目,以便只有一個 activity_base.xml
和其他活動僅控制其內容(content.xml
)。 我看到一些使用ViewStub
和另一個描述<merge>
但我不明白如何在項目中輕鬆應用概念,因爲許多使用活動和片段,我的項目只與活動。
之後調用它的原因是否可以爲所有活動使用完全相同的layout.xml? –