├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── jarRepositories.xml ├── libraries │ ├── Gradle__androidx_activity_activity_1_0_0_aar.xml │ ├── Gradle__androidx_annotation_annotation_1_1_0_jar.xml │ ├── Gradle__androidx_appcompat_appcompat_1_1_0_aar.xml │ ├── Gradle__androidx_appcompat_appcompat_resources_1_1_0_aar.xml │ ├── Gradle__androidx_arch_core_core_common_2_1_0_jar.xml │ ├── Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml │ ├── Gradle__androidx_cardview_cardview_1_0_0_aar.xml │ ├── Gradle__androidx_collection_collection_1_1_0_jar.xml │ ├── Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml │ ├── Gradle__androidx_core_core_1_1_0_aar.xml │ ├── Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml │ ├── Gradle__androidx_customview_customview_1_0_0_aar.xml │ ├── Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml │ ├── Gradle__androidx_fragment_fragment_1_1_0_aar.xml │ ├── Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_common_2_1_0_jar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml │ ├── Gradle__androidx_loader_loader_1_0_0_aar.xml │ ├── Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml │ ├── Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml │ ├── Gradle__androidx_transition_transition_1_2_0_aar.xml │ ├── Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml │ ├── Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml │ ├── Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml │ ├── Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml │ ├── Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml │ ├── Gradle__com_google_android_material_material_1_1_0_aar.xml │ ├── Gradle__junit_junit_4_12_jar.xml │ ├── Gradle__junit_junit_4_13_jar.xml │ └── Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── florent37 │ │ └── sample │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── florent37 │ │ │ └── bubbletab │ │ │ └── sample │ │ │ ├── BubbleTabMainActivity.java │ │ │ ├── FakeAdapter.java │ │ │ └── FakeFragment.java │ └── res │ │ ├── drawable │ │ ├── bubbletab_ic_account.xml │ │ ├── bubbletab_ic_account_selected.xml │ │ ├── bubbletab_ic_account_selector.xml │ │ ├── bubbletab_ic_event.xml │ │ ├── bubbletab_ic_event_selected.xml │ │ ├── bubbletab_ic_event_selector.xml │ │ ├── bubbletab_ic_home.xml │ │ ├── bubbletab_ic_home_selected.xml │ │ ├── bubbletab_ic_home_selector.xml │ │ ├── bubbletab_ic_hourglass_empty.xml │ │ ├── bubbletab_ic_hourglass_full.xml │ │ ├── bubbletab_ic_hourglass_selector.xml │ │ ├── bubbletab_ic_query.xml │ │ ├── bubbletab_ic_query_selected.xml │ │ ├── bubbletab_ic_query_selector.xml │ │ ├── bubbletab_ic_search.xml │ │ ├── bubbletab_ic_search_selected.xml │ │ └── bubbletab_ic_search_selector.xml │ │ ├── layout │ │ ├── bubbletab_activity_main.xml │ │ ├── bubbletab_cell.xml │ │ └── bubbletab_page.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── github │ └── florent37 │ └── sample │ └── ExampleUnitTest.java ├── bubbletab ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── florent37 │ │ └── bubbletab │ │ └── BubbleTab.java │ └── res │ └── values │ └── attrs.xml ├── gradle.properties ├── gradle ├── bintray-android-v1.gradle ├── bintray-java-v1.gradle ├── install-v1.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── media ├── different_icon.gif ├── different_icon.mp4 ├── video.gif ├── video.mp4 ├── withScreen.png ├── withScreen_cropped.png └── withoutScreen.png ├── publish.sh └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_activity_activity_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_activity_activity_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_annotation_annotation_1_1_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_annotation_annotation_1_1_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_appcompat_appcompat_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_cardview_cardview_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_cardview_cardview_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_collection_collection_1_1_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_collection_collection_1_1_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_core_core_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_core_core_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_fragment_fragment_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_fragment_fragment_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_1_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_1_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_transition_transition_1_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_transition_transition_1_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_android_material_material_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__com_google_android_material_material_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__junit_junit_4_12_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__junit_junit_4_12_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__junit_junit_4_13_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__junit_junit_4_13_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/github/florent37/sample/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/androidTest/java/com/github/florent37/sample/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/bubbletab/sample/BubbleTabMainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/java/com/github/florent37/bubbletab/sample/BubbleTabMainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/bubbletab/sample/FakeAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/java/com/github/florent37/bubbletab/sample/FakeAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/bubbletab/sample/FakeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/java/com/github/florent37/bubbletab/sample/FakeFragment.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_account.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_account_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_account_selected.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_account_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_account_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_event.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_event_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_event_selected.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_event_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_event_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_home.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_home_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_home_selected.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_home_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_home_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_hourglass_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_hourglass_empty.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_hourglass_full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_hourglass_full.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_hourglass_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_hourglass_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_query.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_query_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_query_selected.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_query_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_query_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_search_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_search_selected.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubbletab_ic_search_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/drawable/bubbletab_ic_search_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/bubbletab_activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/layout/bubbletab_activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/bubbletab_cell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/layout/bubbletab_cell.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/bubbletab_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/layout/bubbletab_page.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/github/florent37/sample/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/app/src/test/java/com/github/florent37/sample/ExampleUnitTest.java -------------------------------------------------------------------------------- /bubbletab/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /bubbletab/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/bubbletab/build.gradle -------------------------------------------------------------------------------- /bubbletab/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/bubbletab/proguard-rules.pro -------------------------------------------------------------------------------- /bubbletab/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bubbletab/src/main/java/com/github/florent37/bubbletab/BubbleTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/bubbletab/src/main/java/com/github/florent37/bubbletab/BubbleTab.java -------------------------------------------------------------------------------- /bubbletab/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/bubbletab/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/bintray-android-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/gradle/bintray-android-v1.gradle -------------------------------------------------------------------------------- /gradle/bintray-java-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/gradle/bintray-java-v1.gradle -------------------------------------------------------------------------------- /gradle/install-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/gradle/install-v1.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/gradlew.bat -------------------------------------------------------------------------------- /media/different_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/media/different_icon.gif -------------------------------------------------------------------------------- /media/different_icon.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/media/different_icon.mp4 -------------------------------------------------------------------------------- /media/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/media/video.gif -------------------------------------------------------------------------------- /media/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/media/video.mp4 -------------------------------------------------------------------------------- /media/withScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/media/withScreen.png -------------------------------------------------------------------------------- /media/withScreen_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/media/withScreen_cropped.png -------------------------------------------------------------------------------- /media/withoutScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/media/withoutScreen.png -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/BubbleTab/HEAD/publish.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':bubbletab' 2 | --------------------------------------------------------------------------------