├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── vcs.xml ├── modules.xml ├── runConfigurations.xml ├── gradle.xml ├── compiler.xml └── misc.xml ├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── drawable-xhdpi │ │ │ │ ├── splash.jpg │ │ │ │ ├── style_dny.jpg │ │ │ │ ├── style_dzh.jpg │ │ │ │ ├── style_oushi.jpg │ │ │ │ ├── style_rishi.jpg │ │ │ │ ├── style_jianyue.jpg │ │ │ │ ├── style_meishi.jpg │ │ │ │ ├── style_xiandai.jpg │ │ │ │ └── style_zhongshi.jpg │ │ │ ├── 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 │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── layout │ │ │ │ ├── content_main.xml │ │ │ │ └── activity_main.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── hhl │ │ │ └── tubatu │ │ │ ├── ScalePageTransformer.java │ │ │ ├── ClipViewPager.java │ │ │ ├── adapter │ │ │ ├── RecyclingPagerAdapter.java │ │ │ └── RecycleBin.java │ │ │ └── MainActivity.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── hhl │ │ │ └── tubatu │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── hhl │ │ └── tubatu │ │ └── ApplicationTest.java ├── proguard-rules.pro ├── build.gradle └── app.iml ├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── README.md ├── gradle.properties ├── tubatu.iml ├── gradlew.bat ├── gradlew └── LICENSE /.idea/.name: -------------------------------------------------------------------------------- 1 | tubatu -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/splash.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/style_dny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/style_dny.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/style_dzh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/style_dzh.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/style_oushi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/style_oushi.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/style_rishi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/style_rishi.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/style_jianyue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/style_jianyue.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/style_meishi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/style_meishi.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/style_xiandai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/style_xiandai.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/style_zhongshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wutongke/tubatu-viewpager/master/app/src/main/res/drawable-xhdpi/style_zhongshi.jpg -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 高仿土巴兔 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Sep 27 12:40:08 CST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | ======= 9 | # Built application files 10 | *.apk 11 | *.ap_ 12 | 13 | # Files for the Dalvik VM 14 | *.dex 15 | 16 | # Java class files 17 | *.class 18 | 19 | # Generated files 20 | bin/ 21 | gen/ -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 14 |