活动的内容视图是什么?

时间:2013-04-01 18:03:10

标签: android android-layout android-fragments

在本声明中,内容的含义是什么?

fragmentTransaction.replace(android.R.id.content, fragment1); 

这是来自Android Developers的一个片段示例。

1 个答案:

答案 0 :(得分:0)

通常,您附加片段的是ViewGroup。例如:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

此代码将使用fragment_container替换newFragment视图中的任何内容。

transaction.replace(R.id.fragment_container, newFragment);