初めてフラグメントを実装するので、助けてください。
<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 が「list」のフラグメントは一定のままである必要がありますが、ID が「viewer」のフラグメントは異なるクラスを呼び出せるようにする必要があります。
(クラスは Activity を拡張することに注意してください。)
私の質問は簡単です: 私は 4 つのクラス (ACTIVITY の拡張) を持っています。画面を 2 つに分割したい。リストビューを含む左側は一定のままです。リスト ビューのクリックで、クラス (ACTIVITY の拡張) を開きたいのですが、右側の部分 (残りの画面) でのみ開きます。