我正在構建一個大屏幕布局,應該由兩個不同的部分組成,一個左邊和一個右邊。爲了做到這一點,我認爲使用2片段是正確的選擇。Android:何時/爲什麼我應該使用FrameLayout而不是Fragment?
然後我看了一個Master/Detail-Flow導航的例子。它有一個2窗格佈局,其中右側是導航,左側是詳細視圖。
但是在那個例子中,與我期望看到的不同,對於詳細視圖,有一個FrameLayout
,然後直接持有Fragment
而不是Fragment
。
佈局XML看起來是這樣的(例子):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:baselineAligned="false"
android:divider="?android:attr/dividerHorizontal"
android:orientation="horizontal"
android:showDividers="middle"
tools:context=".WorkStationListActivity" >
<fragment
android:id="@+id/workstation_list"
android:name="de.tuhh.ipmt.ialp.history.WorkStationListFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
tools:layout="@android:layout/list_content" />
<FrameLayout
android:id="@+id/workstation_detail_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3" />
</LinearLayout>
我現在的問題是:爲什麼是用來代替Fragment
本身的細節視圖FrameLayout
?原因或優勢是什麼?我是否也應該使用它?
確實有幫助。在我的情況下,我不需要替換片段,所以現在我知道我可以離開'FrameLayout'並直接使用'Fragment'。 – Terry