我是第一次实现片段,所以请帮助我。
<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 为“查看器”的片段应该能够调用不同的类。
(请注意,这些类扩展了 Activity。)
我的问题很简单:我有四个课程(Extending ACTIVITY)。我想把屏幕分成两部分。左侧保持不变,其中包含列表视图。在列表视图的单击上,我想打开我的课程(扩展活动),但只能在右侧部分(剩余屏幕)。