片段内的选项卡式布局无法正常工作

时间:2019-12-25 14:42:45

标签: java android android-fragments

我是一个初学者,尝试应用在“主要”片段中使用选项卡式布局的想法,这也使我也可以导航至其他“辅助片段”,其中有一个带有按钮的主要活动,当单击该按钮时会膨胀此活动中的选项卡式片段。 但是我得到的是:由于某些原因,选项卡仅在第一个片段上重复。

enter image description here

这是我的代码:MainActiviy.java

public class MainActivity  extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

public void fragny(View view) {
    FragmentTransaction ft=getSupportFragmentManager().beginTransaction();
    ft.replace(R.id.ma,new labRatFrag());
    ft.commit();
}

} main_activity.xml

<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/ma"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    android:onClick="fragny"
    />

FragmentPagerAdapter

public class FragAdapt extends FragmentPagerAdapter {

    private static final String[] TAB_TITLES = new String[]{"test1","test2","test3"};
    private final Context mContext;

    public FragAdapt(Context context ,FragmentManager fm) {
        super(fm);
        mContext=context;
    }

    @NonNull
    @Override
    public Fragment getItem(int position) {
        switch (position){
            case 0:
                return new labRatFrag();
            case 1:
                return new labRatFrag2();
            case 2:
                return new labRatFrag3();
            default:
                    return null;
        }
    }

    @Override
    public String getPageTitle(int position) {
        return TAB_TITLES[position];
    }

    @Override
    public int getCount() {
        return 3;
    }
}

我的主要片段(labRatFrag.java)

public class labRatFrag extends Fragment {


public labRatFrag() {
    // Required empty public constructor
}


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View v= inflater.inflate(R.layout.fragment_lab_rat, container, false);

    FragAdapt fa=new FragAdapt(getContext(),getActivity().getSupportFragmentManager());
    ViewPager vp=v.findViewById(R.id.pagery);
    vp.setAdapter(fa);
    TabLayout tabs = v.findViewById(R.id.toto);
    tabs.setupWithViewPager(vp);

    return v;
}

}

fragment_lab_rat.xml


<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay"
        >
        <com.google.android.material.tabs.TabLayout
            android:id="@+id/toto"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"/>
    </com.google.android.material.appbar.AppBarLayout>

    <androidx.viewpager.widget.ViewPager
        android:id="@+id/pagery"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        />


</androidx.coordinatorlayout.widget.CoordinatorLayout>


我想这样做是为了将这种想法与底部导航或导航抽屉一起应用于我正在计划的未来应用程序

1 个答案:

答案 0 :(得分:1)

FragAdapt是您的第二片段,对吧?

如果是,请尝试替换

FragAdapt fa=new FragAdapt(getContext(),getActivity().getSupportFragmentManager());

FragAdapt fa=new FragAdapt(getContext(),getChildFragmentManager());

可能会有所帮助。如果没有,将为您准备一个演示