-1

我希望每当我收到onListItemClick事件时从右侧出现一个片段,例如滑动菜单。假设我已经实现了片段;我怎样才能让它出现?我似乎无法弄清楚。感谢您的时间。

编辑: 这是我要添加片段的视图组:

<TabHost
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal" />


            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="0dp"
                android:layout_height="0dp" />

            <android.support.v4.view.ViewPager
                android:id="@+id/tabviewpager"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="16dp"
                android:layout_marginLeft="16dp"
                android:layout_marginRight="16dp"
                android:layout_marginTop="16dp" >

            </android.support.v4.view.ViewPager>
    </LinearLayout>

</TabHost>

TabViewPager 是我在 Activity 实例化时添加我的 Fragment 的地方,ans 是我需要动态添加我的新 Fragment 的地方。

4

2 回答 2

0

这是图书馆:

https://github.com/jfeinstein10/SlidingMenu

您可以通过多种方式推送 SlidingMenu,我认为您需要先尝试并在遇到错误时返回此处,然后我很乐意为您提供帮助。

于 2013-01-17T17:26:00.043 回答
0

我相当肯定我的问题也解决了你的问题,尽管布局略有不同:

Android 片段侧边栏

于 2013-03-19T04:52:28.107 回答