一、简介
android-viewpager-indicator 是 Tab+ViewPager 切换控件。 GitHub地址:https://github.com/panxw/android-viewpager-indicator
二、使用示例
1. Android 布局文件:
<com.allthelucky.common.view.ViewPagerIndicatorView android:id="@+id/viewpager_indicator_view" android:layout_width="match_parent" android:layout_height="wrap_content" />
2. 在 Java 代码中设置 ViewPagerIndicatorView:
ViewPagerIndicatorView viewPagerIndicatorView; = (ViewPagerIndicatorView) findViewById(R.id.viewpager_indicator_view); final Map<String, View> map = new HashMap<String, View>(); map.put("TAB1", LayoutInflater.from(this).inflate(R.layout.activity_sample_pager_0, null)); map.put("TAB2", LayoutInflater.from(this).inflate(R.layout.activity_sample_pager_1, null)); viewPagerIndicatorView.setupLayout(map);
3.效果图
PS: 顺便宣传下自己的GitHub,https://github.com/panxw, 欢迎来Follow~