在所有佈局上我都有一個頁眉和頁腳,如何在運行時更改佈局之間的佈局?在Android的所有佈局中添加保持頁眉和頁腳常見的子頁面佈局
main_latout.xml-
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <include android:id="@+id/header" layout="@layout/mytask_header" android:layout_width="fill_parent" android:layout_height="60dp" android:layout_alignParentTop="true"/> <include android:id="@+id/footer" layout="@layout/mytask_footer_ads" android:layout_width="fill_parent" android:layout_height="60dp" android:layout_alignParentBottom="true"/> <RelativeLayout android:id="@+id/common_place_for_xml" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_below="@id/header" android:layout_above="@id/footer" android:background="@android:color/darker_gray"> </RelativeLayout> </RelativeLayout>
我想更改RelativeLayout
其他佈局ID common_place_for_xml
? 我是新手?請幫忙。
這似乎是一個使用片段的完美研究案例。 –
閱讀關於片段在這裏http://developer.android.com/guide/components/fragments.html – pyus13
片段可以幫助你很大的時間! –