├── .classpath ├── .gitattributes ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── HoleSwipeView.apk ├── LauncherB.apk ├── classes.dex ├── classes │ └── com │ │ └── ferris │ │ └── holeswipeview │ │ ├── ApplicationAdapter$MyViewHolder.class │ │ ├── ApplicationAdapter.class │ │ ├── ApplicationBeam.class │ │ ├── BuildConfig.class │ │ ├── CrashHandler$1.class │ │ ├── CrashHandler.class │ │ ├── CusomSwipeView$RemoveDirection.class │ │ ├── CusomSwipeView$RemoveListener.class │ │ ├── CusomSwipeView.class │ │ ├── CustomScrollViewActivity$1.class │ │ ├── CustomScrollViewActivity.class │ │ ├── R$attr.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R$styleable.class │ │ └── R.class ├── dexedLibs │ ├── android-support-v4-5067853e3a181db1b7279938727cf0ba.jar │ └── android-support-v7-recyclerview-aa424e9da0594034021b8e5eddda0813.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ ├── app_plus__ic_radar_panel.png │ │ ├── booster.png │ │ ├── com_android_browser.png │ │ ├── com_android_calculator2.png │ │ ├── com_android_calendar.png │ │ ├── com_android_camera.png │ │ ├── com_android_contacts.png │ │ ├── com_android_deskclock.png │ │ ├── com_android_email.png │ │ ├── com_android_mms.png │ │ ├── com_android_music.png │ │ ├── com_android_phone.png │ │ ├── com_android_quicksearchbox.png │ │ ├── com_android_settings.png │ │ ├── com_android_soundrecorder.png │ │ ├── com_qihoo360_mobilesafe.png │ │ ├── com_sds_android_ttpod.png │ │ ├── com_sina_weibo.png │ │ ├── com_tencent_mm.png │ │ ├── com_tencent_mtt.png │ │ ├── com_tencent_qq.png │ │ ├── com_uc_browser.png │ │ ├── com_youdao_dict.png │ │ ├── folder_ic_promo_header.png │ │ ├── folder_radar_center_meter.png │ │ ├── ic_launcher.png │ │ ├── indicator.png │ │ ├── indicator_current.png │ │ ├── radar_icon_app_default.png │ │ └── radar_scan_indicator.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ └── ic_launcher.png ├── resources.ap_ └── 仿apus桌面雷扫描效果.apk ├── gen └── com │ └── ferris │ └── holeswipeview │ ├── BuildConfig.java │ └── R.java ├── libs ├── android-support-v4.jar └── android-support-v7-recyclerview.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── app_plus__ic_radar_panel.png │ ├── booster.png │ ├── cell_bg.9.png │ ├── com_android_browser.png │ ├── com_android_calculator2.png │ ├── com_android_calendar.png │ ├── com_android_camera.png │ ├── com_android_contacts.png │ ├── com_android_deskclock.png │ ├── com_android_email.png │ ├── com_android_mms.png │ ├── com_android_music.png │ ├── com_android_phone.png │ ├── com_android_quicksearchbox.png │ ├── com_android_settings.png │ ├── com_android_soundrecorder.png │ ├── com_qihoo360_mobilesafe.png │ ├── com_sds_android_ttpod.png │ ├── com_sina_weibo.png │ ├── com_tencent_mm.png │ ├── com_tencent_mtt.png │ ├── com_tencent_qq.png │ ├── com_uc_browser.png │ ├── com_youdao_dict.png │ ├── folder_ic_promo_header.png │ ├── folder_radar_center_meter.png │ ├── ic_launcher.png │ ├── indicator.png │ ├── indicator_current.png │ ├── radar_icon_app_default.png │ └── radar_scan_indicator.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable │ ├── background.xml │ └── workspace_bg.jpg ├── layout │ ├── activity_footer.xml │ ├── app_item.xml │ ├── customscrollview.xml │ ├── folder_promotion_loading_footer.xml │ └── main.xml └── values │ ├── attrs.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── ferris └── holeswipeview ├── ApplicationAdapter.java ├── ApplicationBeam.java ├── CrashHandler.java ├── CusomSwipeView.java └── CustomScrollViewActivity.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # ========================= 18 | # Operating System Files 19 | # ========================= 20 | 21 | # OSX 22 | # ========================= 23 | 24 | .DS_Store 25 | .AppleDouble 26 | .LSOverride 27 | 28 | # Icon must end with two \r 29 | Icon 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HoleSwipeView 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /bin/HoleSwipeView.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/HoleSwipeView.apk -------------------------------------------------------------------------------- /bin/LauncherB.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/LauncherB.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/ApplicationAdapter$MyViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/ApplicationAdapter$MyViewHolder.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/ApplicationAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/ApplicationAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/ApplicationBeam.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/ApplicationBeam.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/CrashHandler$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/CrashHandler$1.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/CrashHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/CrashHandler.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/CusomSwipeView$RemoveDirection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/CusomSwipeView$RemoveDirection.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/CusomSwipeView$RemoveListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/CusomSwipeView$RemoveListener.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/CusomSwipeView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/CusomSwipeView.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/CustomScrollViewActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/CustomScrollViewActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/CustomScrollViewActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/CustomScrollViewActivity.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/ferris/holeswipeview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/classes/com/ferris/holeswipeview/R.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-5067853e3a181db1b7279938727cf0ba.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/dexedLibs/android-support-v4-5067853e3a181db1b7279938727cf0ba.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-recyclerview-aa424e9da0594034021b8e5eddda0813.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/dexedLibs/android-support-v7-recyclerview-aa424e9da0594034021b8e5eddda0813.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/app_plus__ic_radar_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/app_plus__ic_radar_panel.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/booster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/booster.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_browser.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_calculator2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_calculator2.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_calendar.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_camera.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_contacts.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_deskclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_deskclock.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_email.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_mms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_mms.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_music.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_phone.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_quicksearchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_quicksearchbox.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_settings.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_android_soundrecorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_android_soundrecorder.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_qihoo360_mobilesafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_qihoo360_mobilesafe.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_sds_android_ttpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_sds_android_ttpod.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_sina_weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_sina_weibo.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_tencent_mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_tencent_mm.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_tencent_mtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_tencent_mtt.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_tencent_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_tencent_qq.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_uc_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_uc_browser.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/com_youdao_dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/com_youdao_dict.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/folder_ic_promo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/folder_ic_promo_header.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/folder_radar_center_meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/folder_radar_center_meter.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/indicator.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/indicator_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/indicator_current.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/radar_icon_app_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/radar_icon_app_default.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/radar_scan_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-hdpi/radar_scan_indicator.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/resources.ap_ -------------------------------------------------------------------------------- /bin/仿apus桌面雷扫描效果.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/bin/仿apus桌面雷扫描效果.apk -------------------------------------------------------------------------------- /gen/com/ferris/holeswipeview/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.ferris.holeswipeview; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /gen/com/ferris/holeswipeview/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.ferris.holeswipeview; 9 | 10 | public final class R { 11 | public static final class attr { 12 | /**

Must be one or more (separated by '|') of the following constant values.

13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
25 | */ 26 | public static final int layout_gravity=0x7f010001; 27 | /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. 28 |

This may also be a reference to a resource (in the form 29 | "@[package:]type:name") or 30 | theme attribute (in the form 31 | "?[package:][type:]name") 32 | containing a value of this type. 33 | */ 34 | public static final int name=0x7f010000; 35 | /**

Must be one of the following constant values.

36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
ConstantValueDescription
horizontal0
vertical1
44 | */ 45 | public static final int orientation=0x7f010002; 46 | } 47 | public static final class dimen { 48 | public static final int app_icon_height=0x7f040001; 49 | public static final int app_icon_width=0x7f040000; 50 | public static final int boost_icon_size=0x7f04000a; 51 | public static final int boost_img_width=0x7f040009; 52 | public static final int boost_small_text_size=0x7f040006; 53 | public static final int boost_stroke=0x7f040008; 54 | public static final int boost_symbol_size=0x7f040007; 55 | public static final int boost_text_size=0x7f040005; 56 | public static final int icon_width=0x7f040002; 57 | public static final int leida_hight=0x7f040004; 58 | public static final int pading_height=0x7f040003; 59 | } 60 | public static final class drawable { 61 | public static final int app_plus__ic_radar_panel=0x7f020000; 62 | public static final int background=0x7f020001; 63 | public static final int booster=0x7f020002; 64 | public static final int cell_bg=0x7f020003; 65 | public static final int com_android_browser=0x7f020004; 66 | public static final int com_android_calculator2=0x7f020005; 67 | public static final int com_android_calendar=0x7f020006; 68 | public static final int com_android_camera=0x7f020007; 69 | public static final int com_android_contacts=0x7f020008; 70 | public static final int com_android_deskclock=0x7f020009; 71 | public static final int com_android_email=0x7f02000a; 72 | public static final int com_android_mms=0x7f02000b; 73 | public static final int com_android_music=0x7f02000c; 74 | public static final int com_android_phone=0x7f02000d; 75 | public static final int com_android_quicksearchbox=0x7f02000e; 76 | public static final int com_android_settings=0x7f02000f; 77 | public static final int com_android_soundrecorder=0x7f020010; 78 | public static final int com_qihoo360_mobilesafe=0x7f020011; 79 | public static final int com_sds_android_ttpod=0x7f020012; 80 | public static final int com_sina_weibo=0x7f020013; 81 | public static final int com_tencent_mm=0x7f020014; 82 | public static final int com_tencent_mtt=0x7f020015; 83 | public static final int com_tencent_qq=0x7f020016; 84 | public static final int com_uc_browser=0x7f020017; 85 | public static final int com_youdao_dict=0x7f020018; 86 | public static final int folder_ic_promo_header=0x7f020019; 87 | public static final int folder_radar_center_meter=0x7f02001a; 88 | public static final int ic_launcher=0x7f02001b; 89 | public static final int indicator=0x7f02001c; 90 | public static final int indicator_current=0x7f02001d; 91 | public static final int radar_icon_app_default=0x7f02001e; 92 | public static final int radar_scan_indicator=0x7f02001f; 93 | public static final int workspace_bg=0x7f020020; 94 | } 95 | public static final class id { 96 | public static final int anim_view=0x7f07000e; 97 | public static final int app_name=0x7f07000b; 98 | public static final int bottom=0x7f070000; 99 | public static final int button1=0x7f070009; 100 | public static final int center_horizontal=0x7f070001; 101 | public static final int center_vertical=0x7f070002; 102 | public static final int horizontal=0x7f070006; 103 | public static final int icon=0x7f07000a; 104 | public static final int imageView1=0x7f070008; 105 | public static final int intro=0x7f07000d; 106 | public static final int left=0x7f070003; 107 | public static final int right=0x7f070004; 108 | public static final int scan_indicator=0x7f070010; 109 | public static final int scan_meter=0x7f07000f; 110 | public static final int sl=0x7f07000c; 111 | public static final int top=0x7f070005; 112 | public static final int vertical=0x7f070007; 113 | public static final int workspace=0x7f070011; 114 | } 115 | public static final class layout { 116 | public static final int activity_footer=0x7f030000; 117 | public static final int app_item=0x7f030001; 118 | public static final int customscrollview=0x7f030002; 119 | public static final int folder_promotion_loading_footer=0x7f030003; 120 | public static final int main=0x7f030004; 121 | } 122 | public static final class string { 123 | public static final int app_name=0x7f050000; 124 | } 125 | public static final class style { 126 | public static final int TransparentStyle=0x7f060000; 127 | } 128 | public static final class styleable { 129 | /** Attributes that can be used with a CircleImageView. 130 |

Includes the following attributes:

131 | 132 | 133 | 134 | 135 | 136 |
AttributeDescription
{@link #CircleImageView_name com.ferris.holeswipeview:name}
137 | @see #CircleImageView_name 138 | */ 139 | public static final int[] CircleImageView = { 140 | 0x7f010000 141 | }; 142 | /** 143 |

This symbol is the offset where the {@link com.ferris.holeswipeview.R.attr#name} 144 | attribute's value can be found in the {@link #CircleImageView} array. 145 | 146 | 147 |

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. 148 |

This may also be a reference to a resource (in the form 149 | "@[package:]type:name") or 150 | theme attribute (in the form 151 | "?[package:][type:]name") 152 | containing a value of this type. 153 | @attr name com.ferris.holeswipeview:name 154 | */ 155 | public static final int CircleImageView_name = 0; 156 | /** Attributes that can be used with a SlideGroup. 157 |

Includes the following attributes:

158 | 159 | 160 | 161 | 162 | 163 |
AttributeDescription
{@link #SlideGroup_layout_gravity com.ferris.holeswipeview:layout_gravity}
164 | @see #SlideGroup_layout_gravity 165 | */ 166 | public static final int[] SlideGroup = { 167 | 0x7f010001 168 | }; 169 | /** 170 |

This symbol is the offset where the {@link com.ferris.holeswipeview.R.attr#layout_gravity} 171 | attribute's value can be found in the {@link #SlideGroup} array. 172 | 173 | 174 |

Must be one or more (separated by '|') of the following constant values.

175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 |
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
187 | @attr name com.ferris.holeswipeview:layout_gravity 188 | */ 189 | public static final int SlideGroup_layout_gravity = 0; 190 | }; 191 | } 192 | -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/android-support-v7-recyclerview.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/libs/android-support-v7-recyclerview.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /res/drawable-hdpi/app_plus__ic_radar_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/app_plus__ic_radar_panel.png -------------------------------------------------------------------------------- /res/drawable-hdpi/booster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/booster.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cell_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/cell_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_browser.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_calculator2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_calculator2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_calendar.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_camera.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_contacts.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_deskclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_deskclock.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_email.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_mms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_mms.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_music.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_phone.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_quicksearchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_quicksearchbox.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_settings.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_android_soundrecorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_android_soundrecorder.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_qihoo360_mobilesafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_qihoo360_mobilesafe.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_sds_android_ttpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_sds_android_ttpod.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_sina_weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_sina_weibo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_tencent_mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_tencent_mm.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_tencent_mtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_tencent_mtt.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_tencent_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_tencent_qq.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_uc_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_uc_browser.png -------------------------------------------------------------------------------- /res/drawable-hdpi/com_youdao_dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/com_youdao_dict.png -------------------------------------------------------------------------------- /res/drawable-hdpi/folder_ic_promo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/folder_ic_promo_header.png -------------------------------------------------------------------------------- /res/drawable-hdpi/folder_radar_center_meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/folder_radar_center_meter.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/indicator.png -------------------------------------------------------------------------------- /res/drawable-hdpi/indicator_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/indicator_current.png -------------------------------------------------------------------------------- /res/drawable-hdpi/radar_icon_app_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/radar_icon_app_default.png -------------------------------------------------------------------------------- /res/drawable-hdpi/radar_scan_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-hdpi/radar_scan_indicator.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /res/drawable/workspace_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chongbo2013/SwipeRecyclerView/7cdfc9c39d8823bb1628b621c6dca98f79d68161/res/drawable/workspace_bg.jpg -------------------------------------------------------------------------------- /res/layout/activity_footer.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 13 | 14 |