├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── panxiaohe │ │ └── springboard │ │ └── demo │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── panxiaohe │ │ │ └── springboard │ │ │ └── demo │ │ │ ├── ImageUtil.java │ │ │ ├── MainActivity.java │ │ │ ├── MyAdapter.java │ │ │ └── MyButtonItem.java │ └── res │ │ ├── drawable-xhdpi │ │ ├── detail_icon_back_normal.png │ │ ├── detail_icon_fav_normal.png │ │ ├── detail_icon_share_normal.png │ │ ├── ugly_edittext_bg.9.png │ │ └── ugly_folder_background.png │ │ ├── drawable │ │ ├── account_bg.png │ │ ├── folder_icon.png │ │ └── new_phone.png │ │ ├── layout │ │ ├── activity_main.xml │ │ └── item.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 │ └── panxiaohe │ └── springboard │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── panxiaohe │ │ └── springboard │ │ └── library │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── panxiaohe │ │ │ └── springboard │ │ │ └── library │ │ │ ├── FavoritesItem.java │ │ │ ├── FingerFlowViewManager.java │ │ │ ├── FolderView.java │ │ │ ├── MenuView.java │ │ │ ├── SpringboardAdapter.java │ │ │ └── SpringboardView.java │ └── res │ │ ├── anim │ │ ├── cycle_7.xml │ │ ├── shake.xml │ │ └── shake_rotate.xml │ │ ├── drawable-hdpi │ │ └── icon_delete.png │ │ ├── drawable │ │ └── folder_background.xml │ │ ├── layout │ │ └── folder_layout.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ └── style.xml │ └── test │ └── java │ └── com │ └── panxiaohe │ └── springboardlib │ └── ExampleUnitTest.java ├── pic └── screenShot1.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /app.iml 3 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/panxiaohe/springboard/demo/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/androidTest/java/com/panxiaohe/springboard/demo/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/panxiaohe/springboard/demo/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/java/com/panxiaohe/springboard/demo/ImageUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/panxiaohe/springboard/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/java/com/panxiaohe/springboard/demo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/panxiaohe/springboard/demo/MyAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/java/com/panxiaohe/springboard/demo/MyAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/panxiaohe/springboard/demo/MyButtonItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/java/com/panxiaohe/springboard/demo/MyButtonItem.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/detail_icon_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/drawable-xhdpi/detail_icon_back_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/detail_icon_fav_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/drawable-xhdpi/detail_icon_fav_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/detail_icon_share_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/drawable-xhdpi/detail_icon_share_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ugly_edittext_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/drawable-xhdpi/ugly_edittext_bg.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ugly_folder_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/drawable-xhdpi/ugly_folder_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/account_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/drawable/account_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/drawable/folder_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/new_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/drawable/new_phone.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/layout/item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/panxiaohe/springboard/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/app/src/test/java/com/panxiaohe/springboard/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /library.iml 3 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/panxiaohe/springboard/library/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/androidTest/java/com/panxiaohe/springboard/library/ApplicationTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /library/src/main/java/com/panxiaohe/springboard/library/FavoritesItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/java/com/panxiaohe/springboard/library/FavoritesItem.java -------------------------------------------------------------------------------- /library/src/main/java/com/panxiaohe/springboard/library/FingerFlowViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/java/com/panxiaohe/springboard/library/FingerFlowViewManager.java -------------------------------------------------------------------------------- /library/src/main/java/com/panxiaohe/springboard/library/FolderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/java/com/panxiaohe/springboard/library/FolderView.java -------------------------------------------------------------------------------- /library/src/main/java/com/panxiaohe/springboard/library/MenuView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/java/com/panxiaohe/springboard/library/MenuView.java -------------------------------------------------------------------------------- /library/src/main/java/com/panxiaohe/springboard/library/SpringboardAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/java/com/panxiaohe/springboard/library/SpringboardAdapter.java -------------------------------------------------------------------------------- /library/src/main/java/com/panxiaohe/springboard/library/SpringboardView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/java/com/panxiaohe/springboard/library/SpringboardView.java -------------------------------------------------------------------------------- /library/src/main/res/anim/cycle_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/anim/cycle_7.xml -------------------------------------------------------------------------------- /library/src/main/res/anim/shake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/anim/shake.xml -------------------------------------------------------------------------------- /library/src/main/res/anim/shake_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/anim/shake_rotate.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/icon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/drawable-hdpi/icon_delete.png -------------------------------------------------------------------------------- /library/src/main/res/drawable/folder_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/drawable/folder_background.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/folder_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/layout/folder_layout.xml -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /library/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/main/res/values/style.xml -------------------------------------------------------------------------------- /library/src/test/java/com/panxiaohe/springboardlib/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/library/src/test/java/com/panxiaohe/springboardlib/ExampleUnitTest.java -------------------------------------------------------------------------------- /pic/screenShot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohepan/springboardView/HEAD/pic/screenShot1.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------