我正在使用TabLayout
实现ViewPager
,其中没有任何标签未修复,并且随着用户滚动页面而增加。我还必须为每个TabLayout.Tab
实现自定义视图。我正在尝试使用以下代码段设置TabLayout
。
private void setupTabLayout() {
tabLayout.setupWithViewPager(viewPager);
for (int i = 0; i < tabLayout.getTabCount(); i++) {
TabLayout.Tab tab = tabLayout.getTabAt(i);
View v = adapter.getTabView(i, true);
tab.setCustomView(v);
}
tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
tab.setCustomView(adapter.getTabView(tab.getPosition(), true));
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
}
以下是标签的自定义视图
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAllCaps="true"
android:id="@+id/month"
android:text="SEP"
android:layout_gravity="center_horizontal"
android:textColor="#FFF"
android:textSize="14sp"
android:gravity="center_horizontal"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/date"
android:textAllCaps="true"
android:text="21"
android:textSize="18sp"
android:textColor="#FFF"
android:layout_gravity="center_horizontal"
android:gravity="center_horizontal"/>
</LinearLayout>
以下是ViewPager
和TabLayout
<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">
<ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabIndicatorHeight="0dp" />
</ViewPager>
</LinearLayout>
最初打开应用时,标签设置正确并且可以正常显示。但是,当我动态添加更多选项卡并滚动时,选项卡的自定义视图不会更新。请帮我为动态添加的标签添加自定义视图。