我的应用程序中有一个简单的Pager布局,它应该根据我的AppState而改变。该应用程序有两个主要状态,LoggedIn和LoggedOut。如果AppState是LoggedOut,那么我的标签布局应该基于两个片段fragment_login
和fragment_about
构建。如果应用程序状态为LoggedIn,则应根据不同的选项卡fragment_main
,fragment_details
,fragment_about
,fragment_logout
构建选项卡布局。
我可以使用这些状态之一初始化应用程序,一切都按预期工作。但是,问题是在用户登录后在运行时动态更改这些布局。
选项卡布局正确更改了标题,但某些旧选项卡片段仍然存在。
SETUP
我的班级连接片段及其各自的标题
private class FragmentList {
Class fClass;
String fName;
public FragmentList(Class c, String n) {
fClass = c;
fName = n;
}
}
我的SectionsAdapter
您可以看到我正在尝试将ArrayList作为参数传递,以便能够reloadtabs()
,但这仍然无效
public class SectionsPagerAdapter extends FragmentPagerAdapter {
ArrayList<FragmentList> tabList;
public SectionsPagerAdapter(FragmentManager fm, ArrayList<FragmentList> fragList) {
super(fm);
tabList = fragList;
}
public void reloadTabs() {
tabList = listFragments_CurrentlyActive;
this.notifyDataSetChanged();
}
@Override
public Fragment getItem(int position) {
Fragment fragment = null;
Class newFragmentClass;
if (position <= tabList.size()) {
newFragmentClass = tabList.get(position).fClass;
} else {
newFragmentClass = tabList.get(0).fClass;
}
try {
fragment = (Fragment) newFragmentClass.newInstance();
} catch (Exception e) {
e.printStackTrace();
}
//Bundle args = new Bundle();
//args.putInt(ARG_SECTION_NUMBER, sectionNumber);
//fragment.setArguments(args);
return fragment;
}
@Override
public int getCount() {
return tabList.size();
}
@Override
public CharSequence getPageTitle(int position) {
if (position <= tabList.size()) {
return tabList.get(position).fName;
} else {
return "Unknown";
}
}
}
初始化片段列表
注意:每个片段都有自己的FRAGMENTNAME
的公共静态字符串private ArrayList<FragmentList> listFragmentsLoggedOut = new ArrayList<>();
private ArrayList<FragmentList> listFragmentsLoggedIn = new ArrayList<>();
listFragmentsLoggedOut.add(new FragmentList(fragment_login.class, fragment_login.FRAGMENT_NAME));
listFragmentsLoggedOut.add(new FragmentList(fragment_about.class, fragment_about.FRAGMENT_NAME));
listFragmentsLoggedIn.add(new FragmentList(fragment_main.class, fragment_main.FRAGMENT_NAME));
listFragmentsLoggedIn.add(new FragmentList(fragment_details.class, fragment_details.FRAGMENT_NAME));
listFragmentsLoggedIn.add(new FragmentList(fragment_about.class, fragment_about.FRAGMENT_NAME));
listFragmentsLoggedIn.add(new FragmentList(fragment_logout.class, fragment_logout.FRAGMENT_NAME));
构建TabLayouts
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initApp();
refreshTabsBasedOnNewState();
}
//Separate method that can be called from elsewhere to update the Tabs
public void refreshTabsBasedOnNewState() {
//Can swap these and the app displays and functions correctly.
listFragments_CurrentlyActive = listFragments_LoggedOut;
//listFragments_CurrentlyActive = listFragments_LoggedIn;
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager(), listFragments_CurrentlyActive);
//update adapter class
mSectionsPagerAdapter.reloadTabs();
sectionsAdapterACTIVE.notifyDataSetChanged();
// Set up the ViewPager with the sections adapter.
mViewPager = (ViewPager) findViewById(R.id.container);
mViewPager.setAdapter(sectionsAdapterACTIVE);
TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs);
tabLayout.setupWithViewPager(mViewPager);
}
当前输出
当应用程序被硬编码为LoggedIn
时,这两个片段和标签会正确显示。与被硬编码为LoggedOut
的应用程序相同。但是,当我尝试更改布局时,通过更改listFragments_CurrentlyActive
的值,我会得到以下行为:
实际上,Tabs是正确的,但显示的片段是:
fragment_login
,fragment_about
,fragment_about
,fragment_logout
。
因此,您可以看到正确添加了2个额外片段,但两个初始片段仍然引用LoggedOut
片段。
可能有一个非常简单的解决方案,我需要使用mSectionsPagerAdapter.notifyDataSetChanged()
在某处更新适配器,或者重建它,但我没有在任何地方找到修复程序。非常感谢。 Ĵ
修改
我甚至尝试在开始时创建适配器,因此它们完全独立,但仍然会出现相同的行为
SectionsPagerAdapter sectionsAdapter_LoggedOut = new SectionsPagerAdapter(getSupportFragmentManager(), listFragmentsLoggedOut);
SectionsPagerAdapter sectionsAdapter_LoggedIn = new SectionsPagerAdapter(getSupportFragmentManager(), listFragmentsLoggedIn);
SectionsPagerAdapter sectionsAdapterACTIVE;
sectionsAdapterACTIVE = (AppState.isLoggedIn) ? sectionsAdapter_LoggedIn : sectionsAdapter_LoggedOut
这可能是getSupportFragmentManager()
中的片段缓存问题吗?
编辑2
添加此图片以帮助查看问题。不确定我事先是否清楚。
答案 0 :(得分:1)
<强>解决强>
问题由另一个线程
上的以下Answer描述如果要切换正在存在的实际片段 显示,您需要避免
FragmentPagerAdapter
并使用FragmentStatePagerAdapter
。
FragmentPagerAdapter
将不起作用,因为它在第一次显示后永远不会破坏片段,因此我遇到了缓存问题。但是,我没有覆盖getItemPosition(Object item)
,就像那个回答所暗示的那样。当我替换时,我的问题就消失了:
public class SectionsPagerAdapter extends FragmentPagerAdapter {
带
public class SectionsPagerAdapter extends FragmentStatePagerAdapter {