我已成功添加标题,但可以添加icon.Here我正在使用SectionsPagerAdapter。
我正在添加这样的标题;
@Override
public CharSequence getPageTitle(int position) {
Locale l = Locale.getDefault();
switch (position) {
case 0:
return getString(R.string.title_section1).toUpperCase(l);
case 1:
return getString(R.string.title_section2).toUpperCase(l);
case 2:
return getString(R.string.title_section3).toUpperCase(l);
}
return null;
}
但是如何添加图标,任何想法。
输出如下:
icon+title icon+title icon+title
提前致谢。