我正在首次實現碎片,所以請幫助我。實現碎片Androids
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment android:name="com.example.news.ArticleListFragment"
android:id="@+id/list"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
<fragment android:name="com.example.news.ArticleReaderFragment"
android:id="@+id/viewer"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
</LinearLayout>
我想具有ID爲「清單」該片段應保持不變,但具有片段ID「觀衆」應該能夠調用不同的類。
(請注意,類擴展活動。)
我的問題很簡單:我有四個班(擴展活動)。我想將屏幕分成兩部分。左側保持不變,其中包含列表視圖。在列表視圖的點擊中,我想打開我的類(擴展活動),但只在右側部分(剩餘的屏幕)。
爲什麼這樣投下來? –
正如你在常見問題上看到的,你的問題基本上是一個「特定的編程問題」,這不是這種情況。你並沒有問任何可以輕易指出的問題,而是一個對我而言的問題。 – Rigotti
我查看了很多相關的例子,但所有的「單個活動中都有多個片段」,但我試圖在一個片段中獲得「多個活動」。 –