我有一个活动,其根布局是一个抽屉布局,主要内容是一个视图寻呼机(和com.astuetz.viewpager.extensions.PagerSlidingTabStrip来协助viewpager。现在我想做的是当一个特定的项目是在导航抽屉中选择,视图寻呼机(以及标签名称条)被单个片段替换。我的活动布局文件是这样的:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<com.astuetz.viewpager.extensions.PagerSlidingTabStrip
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="48dip"
android:background="@drawable/background_tab"
app:underlineColor="#E67E22"
app:indicatorColor="#E67E22" />
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tabs"
tools:context=".UserActivity" >
</android.support.v4.view.ViewPager>
<FrameLayout android:id="@+id/fragmentToSwap"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
<ListView android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="#666"
android:background="#E8E8E8"
/>
</android.support.v4.widget.DrawerLayout>
现在我正在尝试用片段替换视图寻呼机。我自己也不确定,有点困惑哪个元素放在替换方法中。
UserProfileActivity userProfileFragment = new UserProfileActivity();
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.fragmentToSwap, userProfileFragment);
transaction.addToBackStack(null);
transaction.commit();
目前正在发生的事情是新的片段元素与视图寻呼机重叠,而我仍然可以在后台使用视图寻呼机。请帮我搞清楚。
答案 0 :(得分:2)
片段与ViewPager重叠,因为它们全部在RelativeLayout中 - 如果你想隐藏ViewPager和标签条,你可以在每个片段上调用setVisibility(View.GONE)来隐藏它们。
// assuming you do not already have a reference to them,
// find them by their ID and hide them
findViewById(R.id.tabs).setVisibility(View.GONE);
findViewById(R.id.pager).setVisibility(View.GONE);
编辑:实际上,您可以将ViewPager和标签条放在自己的片段中,并将其附加到fragmentToSwap FrameLayout,以便您的片段事务实际上可以替换 - 取决于您的应用程序的架构方式,更有意义。