1

这是我的平板电脑应用程序的屏幕截图(暂时不使用片段):

在此处输入图像描述

如您所见,左侧有一个小菜单,其中包含我的每一项活动的图标。

目前,这些图标启动了新的活动,但我希望它们在右侧的框架中启动 FragmentActivity,所以一切都在同一个面板中。

但是在仔细阅读有关片段的帖子和文档后,我只能看到片段同时显示:

从这里:http ://android-developers.blogspot.com/2011/02/android-30-fragments-api.html

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <fragment class="com.example.android.apis.app.TitlesFragment"
            android:id="@+id/titles" android:layout_weight="1"
            android:layout_width="0px"
            android:layout_height="match_parent" />

    <FrameLayout android:id="@+id/details" android:layout_weight="1"
            android:layout_width="0px"
            android:layout_height="match_parent" />

</LinearLayout>

那么,为了在同一个地方展示不同的片段,应该怎么做呢?我想在 View=gone 上玩是我能想到的最糟糕的主意,不是吗?

非常感谢您的帮助。

4

1 回答 1

0

您必须将活动迁移到片段。然后,您将拥有例如RoutePlanner片段、TrafficIssues片段等。当按下其中一个图标时,您将使用相应的片段FragmentManager替换详细信息。FrameLayout

于 2011-09-20T10:17:28.983 回答