├── .gitignore ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── project.properties ├── res │ ├── drawable │ │ └── background_tab.xml │ └── values │ │ ├── attrs.xml │ │ └── colors.xml └── src │ └── com │ └── astuetz │ └── PagerSlidingTabStrip.java ├── sample ├── AndroidManifest.xml ├── build.gradle ├── ic_launcher-web.png ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_actionbar.png │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_actionbar.png │ ├── drawable-xhdpi │ │ ├── actionbar_bottom.9.png │ │ ├── background_card.9.png │ │ ├── contact.png │ │ ├── ic_action_user.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_actionbar.png │ │ ├── ic_launcher_chrome.png │ │ ├── ic_launcher_gmail.png │ │ ├── ic_launcher_gmaps.png │ │ ├── ic_launcher_gplus.png │ │ ├── tabs_pattern.png │ │ └── tabs_pattern_diagonal.png │ ├── drawable-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_actionbar.png │ ├── drawable │ │ ├── background_tabs.xml │ │ └── background_tabs_diagonal.xml │ ├── layout-land │ │ └── fragment_quick_contact.xml │ ├── layout │ │ ├── activity_main.xml │ │ └── fragment_quick_contact.xml │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── astuetz │ └── viewpager │ └── extensions │ └── sample │ ├── MainActivity.java │ ├── QuickContactFragment.java │ └── SuperAwesomeCardFragment.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/library/AndroidManifest.xml -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/library/project.properties -------------------------------------------------------------------------------- /library/res/drawable/background_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/library/res/drawable/background_tab.xml -------------------------------------------------------------------------------- /library/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/library/res/values/attrs.xml -------------------------------------------------------------------------------- /library/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/library/res/values/colors.xml -------------------------------------------------------------------------------- /library/src/com/astuetz/PagerSlidingTabStrip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/library/src/com/astuetz/PagerSlidingTabStrip.java -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/ic_launcher-web.png -------------------------------------------------------------------------------- /sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/project.properties -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/ic_launcher_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-hdpi/ic_launcher_actionbar.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/ic_launcher_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-mdpi/ic_launcher_actionbar.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/actionbar_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/actionbar_bottom.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/background_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/background_card.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/contact.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_action_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/ic_action_user.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/ic_launcher_actionbar.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher_chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/ic_launcher_chrome.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher_gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/ic_launcher_gmail.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher_gmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/ic_launcher_gmaps.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher_gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/ic_launcher_gplus.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/tabs_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/tabs_pattern.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/tabs_pattern_diagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xhdpi/tabs_pattern_diagonal.png -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/ic_launcher_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable-xxhdpi/ic_launcher_actionbar.png -------------------------------------------------------------------------------- /sample/res/drawable/background_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable/background_tabs.xml -------------------------------------------------------------------------------- /sample/res/drawable/background_tabs_diagonal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/drawable/background_tabs_diagonal.xml -------------------------------------------------------------------------------- /sample/res/layout-land/fragment_quick_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/layout-land/fragment_quick_contact.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/res/layout/fragment_quick_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/layout/fragment_quick_contact.xml -------------------------------------------------------------------------------- /sample/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/menu/main.xml -------------------------------------------------------------------------------- /sample/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /sample/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /sample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /sample/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/values-v14/styles.xml -------------------------------------------------------------------------------- /sample/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/values/colors.xml -------------------------------------------------------------------------------- /sample/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/values/strings.xml -------------------------------------------------------------------------------- /sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/com/astuetz/viewpager/extensions/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/src/com/astuetz/viewpager/extensions/sample/MainActivity.java -------------------------------------------------------------------------------- /sample/src/com/astuetz/viewpager/extensions/sample/QuickContactFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/src/com/astuetz/viewpager/extensions/sample/QuickContactFragment.java -------------------------------------------------------------------------------- /sample/src/com/astuetz/viewpager/extensions/sample/SuperAwesomeCardFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/sample/src/com/astuetz/viewpager/extensions/sample/SuperAwesomeCardFragment.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSofter/SmoothTabIndicator/HEAD/settings.gradle --------------------------------------------------------------------------------