0

是否有可能在一个布局中托管两个 FragmentActivity?

例如,如果我有以下布局,我可以在 container1 中托管一个 FragmentActivity,在 container2 中托管一个 FragmentActivity 吗?:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >


<FrameLayout
    android:id="@+id/container1"
    android:layout_width="match_parent"
    android:layout_height="150dp" >
</FrameLayout>

<FrameLayout
    android:id="@+id/container2"
    android:layout_width="match_parent"
    android:layout_height="150dp" >

</FrameLayout>

如果这不可能,我是否可以有一个 FragmentActivity 加载两个不同的片段并在 container1 中显示一个,在 container2 中显示一个?

4

1 回答 1

0

你有点困惑。布局不包含活动,活动包含布局。在您的布局中,您可以放置View​​ s 和片段,所以是的,可以在一个中加载两个片段FragmentActivity,或者更确切地说,这是实现您想要的唯一方法。

于 2012-08-02T08:23:14.010 回答