开源框架ViewPagerIndicator的使用——TabPageIndicator

1.导入Android-ViewPagerIndicator库文件

下载地址:https://github.com/JakeWharton/ViewPagerIndicator

2.布局文件

开源框架ViewPagerIndicator的使用——TabPageIndicator

 
 

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

运行结果:

开源框架ViewPagerIndicator的使用——TabPageIndicator

上一篇:Leetcode#127 Word Ladder


下一篇:python学习笔记(二)— 数据类型