2

我有一个TabLayout(来自设计库),它通过FragmentPagerAdapter.

这两个列表是相互关联的:它们都包含一个人,一个人在哪个列表中,决定了他/她是否被提名。您可以将成员从一个列表滑动到另一个列表,反之亦然。

问题

我想/需要在标签标题中显示一个计数(该特定列表中有多少人)。很简单,我添加了一些代码getPageTitle,它工作正常。直到我更改列表,并且我需要告诉FragmentPagerAdapter它再次更新其标题:它不会。

到目前为止,我找到的唯一解决方案是调用:mTabLayout.setTabsFromPagerAdapter(mAdapter);

所有这个方法所做的,是removeAllTabs然后循环遍历拥有的那些FragmentPagerAdapter,将它们添加为新的。

这适用于标题,但效率不高,但最重要的是:它强制第一个选项卡再次成为所选项目,从第二个选项卡滑动时这不是一个很好的体验。

我试过mViewPager.setCurrentItem(int item)mTabLayout.setTabsFromPagerAdapter(mAdapter);通话后添加,但这不起作用。

我也尝试过类似的东西

mAdapter.notifyDataSetChanged();
tabLayout.invalidate();

没有效果。

4

1 回答 1

0

这就是我的做法,我有一个要求,我需要每次都为标签标题设置一些计数。

我为标签标题使用了自定义布局。这是我的 custom_tab 布局

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="@color/colorAccent"
    android:textSize="@dimen/tab_label" />

第一次设置标题我使用我的方法setupTabTitle("TAB 1",0);

private void setupTabTitle(String title,int pos) {
   TextView title = (TextView) LayoutInflater.from(this).
          inflate(R.layout.custom_tab, null);
   title .setText(title);
 // set icon
// title .setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.ic_tab_favourite, 0, 0);
   tabLayout.getTabAt(pos).setCustomView(title);
}

下次我使用 tabLayout.getTabAt() 对象时更新标签标题

public void updateCustomTabTitle(String title,int pos) {
    TextView tabTitle = (TextView) tabLayout.getTabAt(pos).getCustomView();
    tabTitle.setText(title);
}

这就是我调用 updateCustomTabTitle 方法的方式

updateCustomTabTitle("My tab title to update",tabLayout.getSelectedTabPosition());

获取选项卡标题值

public String getCustomTabTitle(int pos) {
    TextView tabOne= (TextView) tabLayout.getTabAt(pos).getCustomView();
    return tabOne.getText().toString();
}

注意:首先我尝试了 setupTabTitle 方法来更新选项卡标题,但它不更新标题,它在标题末尾附加了新文本。所以我从选项卡布局中获取视图并使用它来更新和读取选项卡值。

希望这会帮助你。

于 2018-08-07T14:55:16.237 回答