我正在開發一個幾乎每個活動都有相同背景圖像和底部導航欄的android應用程序。如何在Android Studio中的多個活動/片段中重複使用相同的xml背景佈局?
我想,而不是重複使用的每個時間寫出來的驗證碼
這裏是我的XML代碼:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/background_image">
<android.support.design.widget.BottomNavigationView
android:layout_gravity="bottom"
android:id="@+id/bottom_nav_bar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:background="@drawable/bottom_nav_menu_image"
xmlns:android="http://schemas.android.com/apk/res/android" />
</LinearLayout>
這將是所有視圖的基本背景;不過,我會在每個頂部放置不同的佈局。是否可以使用插入和合並標籤以這種方式啓動每個新活動?
使上述代碼的XML和使用 <包括 佈局=「@佈局/ your_xml_name」 /> 並使用該行上您的應用程序的XML –
會把所有的每一個佈局我這一行後放在主要的xml佈局中,在模板xml文件中的LinearLayout中考慮? –
@ScottWeller你可以把include佈局放在線性佈局,相對等任何父佈局中。是的,你可以在