0

ルート レイアウトがドロワー レイアウトで、メイン コンテンツがビュー ページャー (およびビュー ページャーを支援する com.astuetz.viewpager.extensions.PagerSlidingTabStrip) であるアクティビティがあります。ナビゲーション ドロワー、ビュー ページャー (タブ名ストリップと共に) は単一のフラグメントに置き換えられます. 私のアクティビティ レイアウト ファイルは次のとおりです:

<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>

これが、ビューページャーをフラグメントに置き換えようとしているものです。これについては自分でもよくわかりません。replace メソッドにどの要素を入れるか少し混乱しています。

UserProfileActivity userProfileFragment = new UserProfileActivity();
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.fragmentToSwap, userProfileFragment);
transaction.addToBackStack(null);
transaction.commit();

現在起こっていることは、ビューページャーをバックグラウンドで使用できる一方で、新しいフラグメント要素がビューページャーに重なっているということです。私がそれを理解するのを手伝ってください。

4

1 に答える 1

2

これらはすべて一緒に RelativeLayout にあるため、フラグメントは ViewPager とオーバーラップします。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 にアタッチして、フラグメント トランザクションが実際に置換を行うようにすることができます。アプリの設計方法によっては、より理にかなっている場合があります。 .

于 2013-10-24T02:22:30.737 に答える