在本声明中,内容的含义是什么?
fragmentTransaction.replace(android.R.id.content, fragment1);
这是来自Android Developers的一个片段示例。
答案 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);