これはで使用されるXMLコードですres\layout-large\news_articles.xml
:
<fragment android:name="com.example.android.fragments.HeadlinesFragment"
android:id="@+id/headlines_fragment"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
<fragment android:name="com.example.android.fragments.ArticleFragment"
android:id="@+id/article_fragment"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
fragment
属性を持つandroid:name="com.example.android.fragments.ArticleFragment
は、IDを次のように設定します。@+id/article_fragment
article_fragment
使用されているIDを見つけるJAVAコードは、このメソッドの55行public void onArticleSelected(int position)
目にあります。2ペインレイアウトを使用しているかどうかを確認します。そのため、上部に記載されているXMLファイルはlayout-large
フォルダーにあります(例では)。