gpt4 book ai didi

java - 当屏幕方向改变时,TabLayout 会卡在 viewpager 上

转载 作者:太空宇宙 更新时间:2023-11-04 13:46:09 25 4
gpt4 key购买 nike

我正在使用设计支持库。我有一个 fragment ,在这个 fragment 中我有另一个 fragment ,它具有带有 3 个新 fragment 的 View 寻呼机

我的 fragment 代码 -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
app:tabIndicatorColor="@android:color/white"
app:tabIndicatorHeight="4dp"
app:tabMode="fixed" />

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</LinearLayout>

Java代码 fragment

    @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_main, container, false);

TabLayout tabLayout = (TabLayout) v.findViewById(R.id.tab_layout);
tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);
tabLayout.setTabTextColors(Color.parseColor("#ffffff"), Color.parseColor("#000000"));
ViewPager viewPager = (ViewPager) v.findViewById(R.id.pager);
viewPager.setOffscreenPageLimit(3);
viewPager.setAdapter(new SectionPagerAdapter(getActivity().getSupportFragmentManager()));
tabLayout.setupWithViewPager(viewPager);
return v;
}

public class SectionPagerAdapter extends FragmentPagerAdapter {

public SectionPagerAdapter(FragmentManager fm) {
super(fm);
}

@Override
public Fragment getItem(int position) {
switch (position) {
case 0:
return new Tab1();
case 1:
return new Tab2();
case 2:
return new Tab3();

default:
return null;
}
}

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

@Override
public CharSequence getPageTitle(int position) {
switch (position) {
case 0:
return "Tab 1";
case 1:
return "Tab 2";
case 2:
return "Tab 3";

default:
return "";
}
}
}

现在一切正常,但当我旋转屏幕时,在 viewpager 上滑动无法正常工作。我的意思是它卡在两个选项卡之间。此外,选项卡指示器也会卡在选项卡之间。从第一个选项卡转到第三个选项卡几乎需要 6-7 次滑动。此外,在旋转后滑动时,只有一个选项卡 fragment 是先前在旋转之前选择的。

最佳答案

您可以使用 FragmentStatePagerAdapter 代替 FragmentPagerAdapter

关于java - 当屏幕方向改变时,TabLayout 会卡在 viewpager 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30823407/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com