片段导航抽屉viewpagerindicator之间的更改

时间:2013-11-22 10:00:12

标签: android android-fragments android-viewpager navigation-drawer viewpagerindicator

我在content_frame中有一个导航抽屉和一个ViewPagerIndicator。我想在导航抽屉的片段之间进行更改,但问题是在标签 ViewPager 之间切换有效,但当我切换到另一个选项时,您必须删除 ViewPager 并放置一个新片段将此片段放在 ViewPager

附上照片,以便您可以看到。

1)在这里你已经可以看到ViewPager下面的新片段。可以通过 Prueba

显示的文字区分它

enter image description here

附加代码

activity_main.xml中

<android.support.v4.widget.DrawerLayout   
 xmlns:android="http://schemas.android.com/apk/res/android"    
 android:id="@+id/drawer_layout"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">

<FrameLayout         
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout 
        android:id="@+id/content_linear"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <com.viewpagerindicator.TabPageIndicator
            android:id="@+id/indicator"
            android:layout_height="wrap_content"
            android:layout_width="fill_parent"/>

        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1"/>
    </LinearLayout>

</FrameLayout>

<ListView 
 android:id="@+id/left_drawer"
 android:layout_width="240dp"
 android:layout_height="match_parent"
 android:layout_gravity="start"
 android:choiceMode="singleChoice"
 android:divider="@android:color/transparent"
 android:dividerHeight="0dp"
 android:background="#111"/>

片段之间切换的方法。

   /** Main content by replacing fragments
 * @param position
 */
private void selectItem(int position) {
    //Code
    Fragment fragment = new TryFragment();
    FragmentTransaction ft = getSupportFragmentManager().beginTransaction();

    switch (position) {
    case 0:
        mPager.setCurrentItem(0);
        break;

    case 1:
        mPager.setCurrentItem(1);
        break;

    case 2:

        ft.replace(R.id.content_frame, fragment);

        break;

    }        
    ft.commit();
    mAdapter.notifyDataSetChanged();
    //Close drawer
    mDrawerLayout.closeDrawer(mDrawerList);
}

Class TryFragment

    class TryFragment extends Fragment
{
    public static final String  ARG_PLANET_NUMBER   = "planet_number";

    public TryFragment()
    {
        // Empty constructor required for fragment subclasses
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    {
           TextView text = new TextView(getActivity());
            text.setGravity(Gravity.CENTER);
            text.setText("Prueba");
            text.setTextSize(20 * getResources().getDisplayMetrics().density);
            text.setPadding(20, 20, 20, 20);

            LinearLayout layout = new LinearLayout(getActivity());
            layout.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
            layout.setGravity(Gravity.CENTER);
            layout.addView(text);

            Log.d("TestFragment", "Estoy en el fragment");

            return layout;
    }
}

我不知道是否必须销毁viewpager以显示新片段或xml中的层次结构问题。

2 个答案:

答案 0 :(得分:1)

你的ViewPager必须是Fragment,它应该放在layout.content_frame中,所以当你调用ft.replace(R.id.content_frame,fragment)时;您的ViewPager片段将被替换。

答案 1 :(得分:0)

您不应同时使用ViewPager和NavigationDrawer。你可以在这篇G +帖子中看到Roman Nurik的答案: https://plus.google.com/u/1/+DavidTaSmoochibi/posts/8dWEkFcbTFX

“你不应该使用带有操作栏标签的导航抽屉。如果你的目标是使用类似于Google Play音乐的用户界面,你应该手动实现标签(并注意这在平板电脑上看起来如何 - 你不要'我想要平板电脑上的全宽标签栏。还要确保从今年的Google I / O中查看Android App Design会话中的结构,详细了解可用于公开应用层次结构的各种界面模式。“ / p>