├── .gitignore ├── CHANGELOG.md ├── README.md ├── checkstyle.xml ├── library ├── AndroidManifest.xml ├── libs │ └── android-support-v4.jar ├── pom.xml ├── project.properties ├── res │ ├── color │ │ ├── vpi__dark_theme.xml │ │ └── vpi__light_theme.xml │ ├── drawable-hdpi │ │ ├── vpi__tab_selected_focused_holo.9.png │ │ ├── vpi__tab_selected_holo.9.png │ │ ├── vpi__tab_selected_pressed_holo.9.png │ │ ├── vpi__tab_unselected_focused_holo.9.png │ │ ├── vpi__tab_unselected_holo.9.png │ │ └── vpi__tab_unselected_pressed_holo.9.png │ ├── drawable-mdpi │ │ ├── vpi__tab_selected_focused_holo.9.png │ │ ├── vpi__tab_selected_holo.9.png │ │ ├── vpi__tab_selected_pressed_holo.9.png │ │ ├── vpi__tab_unselected_focused_holo.9.png │ │ ├── vpi__tab_unselected_holo.9.png │ │ └── vpi__tab_unselected_pressed_holo.9.png │ ├── drawable-xhdpi │ │ ├── vpi__tab_selected_focused_holo.9.png │ │ ├── vpi__tab_selected_holo.9.png │ │ ├── vpi__tab_selected_pressed_holo.9.png │ │ ├── vpi__tab_unselected_focused_holo.9.png │ │ ├── vpi__tab_unselected_holo.9.png │ │ └── vpi__tab_unselected_pressed_holo.9.png │ ├── drawable │ │ └── vpi__tab_indicator.xml │ └── values │ │ ├── vpi__attrs.xml │ │ ├── vpi__colors.xml │ │ ├── vpi__defaults.xml │ │ └── vpi__styles.xml └── src │ └── com │ └── viewpagerindicator │ ├── CirclePageIndicator.java │ ├── IconPageIndicator.java │ ├── IconPagerAdapter.java │ ├── IcsLinearLayout.java │ ├── LinePageIndicator.java │ ├── PageIndicator.java │ ├── TabPageIndicator.java │ ├── TitlePageIndicator.java │ └── UnderlinePageIndicator.java ├── pom.xml └── sample ├── AndroidManifest.xml ├── libs └── android-support-v4.jar ├── logo.png ├── pom.xml ├── project.properties ├── psd ├── icon_hdpi.psd ├── icon_mdpi.psd ├── icon_xhdpi.psd ├── logo.psd └── web.psd ├── res ├── drawable-hdpi │ ├── custom_tab_indicator_divider.9.png │ ├── custom_tab_indicator_focused.9.png │ ├── custom_tab_indicator_selected.9.png │ ├── custom_tab_indicator_selected_pressed.9.png │ ├── custom_tab_indicator_unselected.9.png │ ├── custom_tab_indicator_unselected_focused.9.png │ ├── custom_tab_indicator_unselected_pressed.9.png │ ├── icon.png │ ├── perm_group_calendar_normal.png │ ├── perm_group_calendar_selected.png │ ├── perm_group_camera_normal.png │ ├── perm_group_camera_selected.png │ ├── perm_group_device_alarms_normal.png │ ├── perm_group_device_alarms_selected.png │ ├── perm_group_location_normal.png │ └── perm_group_location_selected.png ├── drawable-mdpi │ ├── custom_tab_indicator_divider.9.png │ ├── custom_tab_indicator_selected.9.png │ ├── custom_tab_indicator_selected_focused.9.png │ ├── custom_tab_indicator_selected_pressed.9.png │ ├── custom_tab_indicator_unselected.9.png │ ├── custom_tab_indicator_unselected_focused.9.png │ ├── custom_tab_indicator_unselected_pressed.9.png │ ├── icon.png │ ├── perm_group_calendar_normal.png │ ├── perm_group_calendar_selected.png │ ├── perm_group_camera_normal.png │ ├── perm_group_camera_selected.png │ ├── perm_group_device_alarms_normal.png │ ├── perm_group_device_alarms_selected.png │ ├── perm_group_location_normal.png │ └── perm_group_location_selected.png ├── drawable-xhdpi │ ├── custom_tab_indicator_divider.9.png │ ├── custom_tab_indicator_selected.9.png │ ├── custom_tab_indicator_selected_focused.9.png │ ├── custom_tab_indicator_selected_pressed.9.png │ ├── custom_tab_indicator_unselected.9.png │ ├── custom_tab_indicator_unselected_focused.9.png │ ├── custom_tab_indicator_unselected_pressed.9.png │ ├── icon.png │ ├── perm_group_calendar_normal.png │ ├── perm_group_calendar_selected.png │ ├── perm_group_camera_normal.png │ ├── perm_group_camera_selected.png │ ├── perm_group_device_alarms_normal.png │ ├── perm_group_device_alarms_selected.png │ ├── perm_group_location_normal.png │ └── perm_group_location_selected.png ├── drawable │ ├── custom_tab_indicator.xml │ ├── perm_group_calendar.xml │ ├── perm_group_camera.xml │ ├── perm_group_device_alarms.xml │ └── perm_group_location.xml ├── layout │ ├── simple_circles.xml │ ├── simple_circles_vertical.xml │ ├── simple_icons.xml │ ├── simple_lines.xml │ ├── simple_tabs.xml │ ├── simple_titles.xml │ ├── simple_titles_bottom.xml │ ├── simple_underlines.xml │ ├── themed_circles.xml │ ├── themed_lines.xml │ ├── themed_titles.xml │ └── themed_underlines.xml ├── menu │ └── menu.xml └── values │ └── styles.xml ├── screens.png ├── src └── com │ └── viewpagerindicator │ └── sample │ ├── BaseSampleActivity.java │ ├── ListSamples.java │ ├── SampleCirclesDefault.java │ ├── SampleCirclesInitialPage.java │ ├── SampleCirclesSnap.java │ ├── SampleCirclesStyledLayout.java │ ├── SampleCirclesStyledMethods.java │ ├── SampleCirclesStyledTheme.java │ ├── SampleCirclesWithListener.java │ ├── SampleIconsDefault.java │ ├── SampleLinesDefault.java │ ├── SampleLinesStyledLayout.java │ ├── SampleLinesStyledMethods.java │ ├── SampleLinesStyledTheme.java │ ├── SampleTabsDefault.java │ ├── SampleTabsStyled.java │ ├── SampleTabsWithIcons.java │ ├── SampleTitlesBottom.java │ ├── SampleTitlesCenterClickListener.java │ ├── SampleTitlesDefault.java │ ├── SampleTitlesInitialPage.java │ ├── SampleTitlesStyledLayout.java │ ├── SampleTitlesStyledMethods.java │ ├── SampleTitlesStyledTheme.java │ ├── SampleTitlesTriangle.java │ ├── SampleTitlesWithListener.java │ ├── SampleUnderlinesDefault.java │ ├── SampleUnderlinesNoFade.java │ ├── SampleUnderlinesStyledLayout.java │ ├── SampleUnderlinesStyledMethods.java │ ├── SampleUnderlinesStyledTheme.java │ ├── TestFragment.java │ └── TestFragmentAdapter.java └── web.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/README.md -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/AndroidManifest.xml -------------------------------------------------------------------------------- /library/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/libs/android-support-v4.jar -------------------------------------------------------------------------------- /library/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/pom.xml -------------------------------------------------------------------------------- /library/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/project.properties -------------------------------------------------------------------------------- /library/res/color/vpi__dark_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/color/vpi__dark_theme.xml -------------------------------------------------------------------------------- /library/res/color/vpi__light_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/color/vpi__light_theme.xml -------------------------------------------------------------------------------- /library/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/vpi__tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-hdpi/vpi__tab_selected_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/vpi__tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-hdpi/vpi__tab_unselected_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/vpi__tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-mdpi/vpi__tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/vpi__tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-mdpi/vpi__tab_selected_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/vpi__tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-mdpi/vpi__tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/vpi__tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-mdpi/vpi__tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/vpi__tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-mdpi/vpi__tab_unselected_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/vpi__tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-mdpi/vpi__tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/vpi__tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-xhdpi/vpi__tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/vpi__tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-xhdpi/vpi__tab_selected_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/vpi__tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-xhdpi/vpi__tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/vpi__tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-xhdpi/vpi__tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/vpi__tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-xhdpi/vpi__tab_unselected_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/vpi__tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable-xhdpi/vpi__tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /library/res/drawable/vpi__tab_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/drawable/vpi__tab_indicator.xml -------------------------------------------------------------------------------- /library/res/values/vpi__attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/values/vpi__attrs.xml -------------------------------------------------------------------------------- /library/res/values/vpi__colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/values/vpi__colors.xml -------------------------------------------------------------------------------- /library/res/values/vpi__defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/values/vpi__defaults.xml -------------------------------------------------------------------------------- /library/res/values/vpi__styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/res/values/vpi__styles.xml -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/CirclePageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/CirclePageIndicator.java -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/IconPageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/IconPageIndicator.java -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/IconPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/IconPagerAdapter.java -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/IcsLinearLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/IcsLinearLayout.java -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/LinePageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/LinePageIndicator.java -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/PageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/PageIndicator.java -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/TabPageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/TabPageIndicator.java -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/TitlePageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/TitlePageIndicator.java -------------------------------------------------------------------------------- /library/src/com/viewpagerindicator/UnderlinePageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/library/src/com/viewpagerindicator/UnderlinePageIndicator.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/pom.xml -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /sample/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/logo.png -------------------------------------------------------------------------------- /sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/pom.xml -------------------------------------------------------------------------------- /sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/project.properties -------------------------------------------------------------------------------- /sample/psd/icon_hdpi.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/psd/icon_hdpi.psd -------------------------------------------------------------------------------- /sample/psd/icon_mdpi.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/psd/icon_mdpi.psd -------------------------------------------------------------------------------- /sample/psd/icon_xhdpi.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/psd/icon_xhdpi.psd -------------------------------------------------------------------------------- /sample/psd/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/psd/logo.psd -------------------------------------------------------------------------------- /sample/psd/web.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/psd/web.psd -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/custom_tab_indicator_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/custom_tab_indicator_divider.9.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/custom_tab_indicator_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/custom_tab_indicator_focused.9.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/custom_tab_indicator_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/custom_tab_indicator_selected.9.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/custom_tab_indicator_selected_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/custom_tab_indicator_selected_pressed.9.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/custom_tab_indicator_unselected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/custom_tab_indicator_unselected.9.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/custom_tab_indicator_unselected_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/custom_tab_indicator_unselected_focused.9.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/custom_tab_indicator_unselected_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/custom_tab_indicator_unselected_pressed.9.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/perm_group_calendar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/perm_group_calendar_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/perm_group_calendar_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/perm_group_calendar_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/perm_group_camera_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/perm_group_camera_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/perm_group_camera_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/perm_group_camera_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/perm_group_device_alarms_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/perm_group_device_alarms_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/perm_group_device_alarms_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/perm_group_device_alarms_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/perm_group_location_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/perm_group_location_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/perm_group_location_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-hdpi/perm_group_location_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/custom_tab_indicator_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/custom_tab_indicator_divider.9.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/custom_tab_indicator_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/custom_tab_indicator_selected.9.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/custom_tab_indicator_selected_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/custom_tab_indicator_selected_focused.9.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/custom_tab_indicator_selected_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/custom_tab_indicator_selected_pressed.9.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/custom_tab_indicator_unselected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/custom_tab_indicator_unselected.9.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/custom_tab_indicator_unselected_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/custom_tab_indicator_unselected_focused.9.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/custom_tab_indicator_unselected_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/custom_tab_indicator_unselected_pressed.9.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/perm_group_calendar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/perm_group_calendar_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/perm_group_calendar_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/perm_group_calendar_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/perm_group_camera_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/perm_group_camera_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/perm_group_camera_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/perm_group_camera_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/perm_group_device_alarms_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/perm_group_device_alarms_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/perm_group_device_alarms_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/perm_group_device_alarms_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/perm_group_location_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/perm_group_location_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/perm_group_location_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-mdpi/perm_group_location_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/custom_tab_indicator_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/custom_tab_indicator_divider.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/custom_tab_indicator_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/custom_tab_indicator_selected.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/custom_tab_indicator_selected_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/custom_tab_indicator_selected_focused.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/custom_tab_indicator_selected_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/custom_tab_indicator_selected_pressed.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/custom_tab_indicator_unselected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/custom_tab_indicator_unselected.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/custom_tab_indicator_unselected_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/custom_tab_indicator_unselected_focused.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/custom_tab_indicator_unselected_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/custom_tab_indicator_unselected_pressed.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/perm_group_calendar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/perm_group_calendar_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/perm_group_calendar_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/perm_group_calendar_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/perm_group_camera_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/perm_group_camera_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/perm_group_camera_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/perm_group_camera_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/perm_group_device_alarms_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/perm_group_device_alarms_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/perm_group_device_alarms_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/perm_group_device_alarms_selected.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/perm_group_location_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/perm_group_location_normal.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/perm_group_location_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable-xhdpi/perm_group_location_selected.png -------------------------------------------------------------------------------- /sample/res/drawable/custom_tab_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable/custom_tab_indicator.xml -------------------------------------------------------------------------------- /sample/res/drawable/perm_group_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable/perm_group_calendar.xml -------------------------------------------------------------------------------- /sample/res/drawable/perm_group_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable/perm_group_camera.xml -------------------------------------------------------------------------------- /sample/res/drawable/perm_group_device_alarms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable/perm_group_device_alarms.xml -------------------------------------------------------------------------------- /sample/res/drawable/perm_group_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/drawable/perm_group_location.xml -------------------------------------------------------------------------------- /sample/res/layout/simple_circles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/simple_circles.xml -------------------------------------------------------------------------------- /sample/res/layout/simple_circles_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/simple_circles_vertical.xml -------------------------------------------------------------------------------- /sample/res/layout/simple_icons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/simple_icons.xml -------------------------------------------------------------------------------- /sample/res/layout/simple_lines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/simple_lines.xml -------------------------------------------------------------------------------- /sample/res/layout/simple_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/simple_tabs.xml -------------------------------------------------------------------------------- /sample/res/layout/simple_titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/simple_titles.xml -------------------------------------------------------------------------------- /sample/res/layout/simple_titles_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/simple_titles_bottom.xml -------------------------------------------------------------------------------- /sample/res/layout/simple_underlines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/simple_underlines.xml -------------------------------------------------------------------------------- /sample/res/layout/themed_circles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/themed_circles.xml -------------------------------------------------------------------------------- /sample/res/layout/themed_lines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/themed_lines.xml -------------------------------------------------------------------------------- /sample/res/layout/themed_titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/themed_titles.xml -------------------------------------------------------------------------------- /sample/res/layout/themed_underlines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/layout/themed_underlines.xml -------------------------------------------------------------------------------- /sample/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/menu/menu.xml -------------------------------------------------------------------------------- /sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/res/values/styles.xml -------------------------------------------------------------------------------- /sample/screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/screens.png -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/BaseSampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/BaseSampleActivity.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/ListSamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/ListSamples.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleCirclesDefault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleCirclesDefault.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleCirclesInitialPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleCirclesInitialPage.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleCirclesSnap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleCirclesSnap.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleCirclesStyledLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleCirclesStyledLayout.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleCirclesStyledMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleCirclesStyledMethods.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleCirclesStyledTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleCirclesStyledTheme.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleCirclesWithListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleCirclesWithListener.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleIconsDefault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleIconsDefault.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleLinesDefault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleLinesDefault.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleLinesStyledLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleLinesStyledLayout.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleLinesStyledMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleLinesStyledMethods.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleLinesStyledTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleLinesStyledTheme.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTabsDefault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTabsDefault.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTabsStyled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTabsStyled.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTabsWithIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTabsWithIcons.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesBottom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesBottom.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesCenterClickListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesCenterClickListener.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesDefault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesDefault.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesInitialPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesInitialPage.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesStyledLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesStyledLayout.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesStyledMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesStyledMethods.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesStyledTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesStyledTheme.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesTriangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesTriangle.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleTitlesWithListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleTitlesWithListener.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleUnderlinesDefault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleUnderlinesDefault.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleUnderlinesNoFade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleUnderlinesNoFade.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleUnderlinesStyledLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleUnderlinesStyledLayout.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleUnderlinesStyledMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleUnderlinesStyledMethods.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/SampleUnderlinesStyledTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/SampleUnderlinesStyledTheme.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/TestFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/TestFragment.java -------------------------------------------------------------------------------- /sample/src/com/viewpagerindicator/sample/TestFragmentAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/src/com/viewpagerindicator/sample/TestFragmentAdapter.java -------------------------------------------------------------------------------- /sample/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianey/Android-ViewPagerIndicator/HEAD/sample/web.png --------------------------------------------------------------------------------