开源框架ViewPagerIndicator的使用——TabPageIndicator
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了开源框架ViewPagerIndicator的使用——TabPageIndicator相关的知识,希望对你有一定的参考价值。
1.导入android-ViewPagerIndicator库文件
下载地址:https://github.com/JakeWharton/ViewPagerIndicator
2.布局文件
? ?
3.代码实现:
FragmentPagerAdapteradapter=newGoogleMusicAdapter(
getSupportFragmentManager());
ViewPagerpager=(ViewPager)findViewById(R.id.pager);
pager.setAdapter(adapter);
TabPageIndicatorindicator=(TabPageIndicator)findViewById(R.id.indicator);
indicator.setViewPager(pager);
indicator.setVisibility(View.VISIBLE);
? ?
注意:FragmentPagerAdapter 需实现 getPageTitle()方法,改方法放回值与indicator中的内容相对应;在使用indicator时,要先把visibility属性设为gone,然后绑定ViewPager后在动态的设置为VISIBLE。
? ?
4.主题:
清单文件 activity 节点上配置?theme 属性
运行结果:
以上是关于开源框架ViewPagerIndicator的使用——TabPageIndicator的主要内容,如果未能解决你的问题,请参考以下文章
如何在Android中使用viewPagerindicator和ViewPager?
如何在 iOS 中使用 ViewPager 和 Android 中的 ViewPagerIndicator 等标题实现页面之间的滑动?
在Fragment中嵌套使用viewpagerindicator切换Fragment返回后出现空白页与FragmentPagerAdapter页面预加载的解决方案