├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── libraries │ └── android_support_v4.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── AndroidManifest.xml ├── README.md ├── SelectMutiImgDemo.iml ├── gen └── com │ └── hankkin │ └── SelectMutiImgDemo │ ├── BuildConfig.java │ ├── Manifest.java │ └── R.java ├── libs ├── android-support-v4.jar └── armeabi-v7a │ └── libjpush175.so ├── project.properties ├── res ├── drawable-hdpi │ ├── btn_camera_select_down.9.png │ ├── btn_camera_select_nomal.9.png │ ├── btn_photo_select_down.9.png │ ├── btn_photo_select_nomal.9.png │ ├── btn_select_image.9.png │ ├── btn_select_image_down.9.png │ ├── icon_add_pic_unfocused.9.png │ ├── list_item_divide_operate.png │ ├── plubin_camera_del_focused.png │ ├── plugin_camera_album_back.png │ ├── plugin_camera_back_btn.png │ ├── plugin_camera_back_btn_pressed.png │ ├── plugin_camera_bottom_bar.png │ ├── plugin_camera_cancel.png │ ├── plugin_camera_cancel_pressed.png │ ├── plugin_camera_choose_back.png │ ├── plugin_camera_choosed.png │ ├── plugin_camera_del_unfocused.png │ ├── plugin_camera_filenum.png │ ├── plugin_camera_no_pictures.png │ ├── plugin_camera_preview_focused.png │ ├── plugin_camera_preview_pressed.png │ ├── plugin_camera_preview_unselected.png │ ├── plugin_camera_send_focused.png │ ├── plugin_camera_send_pressed.png │ ├── plugin_camera_send_unselected.png │ └── plugin_camera_title_bar.9.png ├── drawable │ ├── btn_camera_sharp_selector.xml │ ├── btn_photo_cancel_sharp_selector.xml │ ├── btn_photo_sharp_selector.xml │ ├── icon.png │ ├── plugin_camera_albumbackground.xml │ ├── plugin_camera_del_state.xml │ ├── plugin_camera_ok_btn_state.xml │ ├── plugin_camera_pic_choose_selector.xml │ ├── plugin_camera_title_btn_back.xml │ ├── plugin_camera_title_btn_cancel.xml │ └── plugin_camera_title_btn_preview.xml ├── layout │ ├── gallery.xml │ ├── item_popupwindows.xml │ ├── item_published_singal_item.xml │ ├── main.xml │ ├── plugin_camera_album.xml │ ├── plugin_camera_image_file.xml │ ├── plugin_camera_select_folder.xml │ ├── plugin_camera_select_imageview.xml │ └── plugin_camera_show_all_photo.xml └── values │ ├── color.xml │ ├── dimens.xml │ └── strings.xml └── src └── com └── hankkin └── SelectMutiImgDemo ├── Bimp.java ├── ImageBucket.java ├── Utils ├── AlbumHelper.java ├── BitmapCache.java ├── BitmapUtils.java └── FileUtils.java ├── activity ├── AlbumActivity.java ├── GalleryActivity.java └── MainActivity.java ├── adapter ├── AlbumGridViewAdapter.java ├── MyPageAdapter.java └── PictureAdapter.java ├── model └── ImageBean.java ├── popwindow └── SelectPicPopupWindow.java └── view ├── NoScrollGridView.java ├── OnImageTouchedListener.java ├── SquareLayout.java ├── ViewPagerFixed.java └── ZoomableImageView.java /.idea/.name: -------------------------------------------------------------------------------- 1 | SelectMutiImgDemo -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/libraries/android_support_v4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/.idea/libraries/android_support_v4.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/README.md -------------------------------------------------------------------------------- /SelectMutiImgDemo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/SelectMutiImgDemo.iml -------------------------------------------------------------------------------- /gen/com/hankkin/SelectMutiImgDemo/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/gen/com/hankkin/SelectMutiImgDemo/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/hankkin/SelectMutiImgDemo/Manifest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/gen/com/hankkin/SelectMutiImgDemo/Manifest.java -------------------------------------------------------------------------------- /gen/com/hankkin/SelectMutiImgDemo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/gen/com/hankkin/SelectMutiImgDemo/R.java -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/armeabi-v7a/libjpush175.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/libs/armeabi-v7a/libjpush175.so -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_camera_select_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/btn_camera_select_down.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_camera_select_nomal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/btn_camera_select_nomal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_photo_select_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/btn_photo_select_down.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_photo_select_nomal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/btn_photo_select_nomal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_select_image.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/btn_select_image.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_select_image_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/btn_select_image_down.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_add_pic_unfocused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/icon_add_pic_unfocused.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_item_divide_operate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/list_item_divide_operate.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plubin_camera_del_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plubin_camera_del_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_album_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_album_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_back_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_back_btn.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_back_btn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_back_btn_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_bottom_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_bottom_bar.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_cancel.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_cancel_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_cancel_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_choose_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_choose_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_choosed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_del_unfocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_del_unfocused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_filenum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_filenum.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_no_pictures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_no_pictures.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_preview_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_preview_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_preview_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_preview_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_preview_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_preview_unselected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_send_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_send_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_send_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_send_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_send_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_send_unselected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/plugin_camera_title_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable-hdpi/plugin_camera_title_bar.9.png -------------------------------------------------------------------------------- /res/drawable/btn_camera_sharp_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/btn_camera_sharp_selector.xml -------------------------------------------------------------------------------- /res/drawable/btn_photo_cancel_sharp_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/btn_photo_cancel_sharp_selector.xml -------------------------------------------------------------------------------- /res/drawable/btn_photo_sharp_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/btn_photo_sharp_selector.xml -------------------------------------------------------------------------------- /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/icon.png -------------------------------------------------------------------------------- /res/drawable/plugin_camera_albumbackground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/plugin_camera_albumbackground.xml -------------------------------------------------------------------------------- /res/drawable/plugin_camera_del_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/plugin_camera_del_state.xml -------------------------------------------------------------------------------- /res/drawable/plugin_camera_ok_btn_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/plugin_camera_ok_btn_state.xml -------------------------------------------------------------------------------- /res/drawable/plugin_camera_pic_choose_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/plugin_camera_pic_choose_selector.xml -------------------------------------------------------------------------------- /res/drawable/plugin_camera_title_btn_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/plugin_camera_title_btn_back.xml -------------------------------------------------------------------------------- /res/drawable/plugin_camera_title_btn_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/plugin_camera_title_btn_cancel.xml -------------------------------------------------------------------------------- /res/drawable/plugin_camera_title_btn_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/drawable/plugin_camera_title_btn_preview.xml -------------------------------------------------------------------------------- /res/layout/gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/gallery.xml -------------------------------------------------------------------------------- /res/layout/item_popupwindows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/item_popupwindows.xml -------------------------------------------------------------------------------- /res/layout/item_published_singal_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/item_published_singal_item.xml -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/layout/plugin_camera_album.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/plugin_camera_album.xml -------------------------------------------------------------------------------- /res/layout/plugin_camera_image_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/plugin_camera_image_file.xml -------------------------------------------------------------------------------- /res/layout/plugin_camera_select_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/plugin_camera_select_folder.xml -------------------------------------------------------------------------------- /res/layout/plugin_camera_select_imageview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/plugin_camera_select_imageview.xml -------------------------------------------------------------------------------- /res/layout/plugin_camera_show_all_photo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/layout/plugin_camera_show_all_photo.xml -------------------------------------------------------------------------------- /res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/values/color.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/Bimp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/Bimp.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/ImageBucket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/ImageBucket.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/Utils/AlbumHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/Utils/AlbumHelper.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/Utils/BitmapCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/Utils/BitmapCache.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/Utils/BitmapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/Utils/BitmapUtils.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/Utils/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/Utils/FileUtils.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/activity/AlbumActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/activity/AlbumActivity.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/activity/GalleryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/activity/GalleryActivity.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/activity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/activity/MainActivity.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/adapter/AlbumGridViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/adapter/AlbumGridViewAdapter.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/adapter/MyPageAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/adapter/MyPageAdapter.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/adapter/PictureAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/adapter/PictureAdapter.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/model/ImageBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/model/ImageBean.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/popwindow/SelectPicPopupWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/popwindow/SelectPicPopupWindow.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/view/NoScrollGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/view/NoScrollGridView.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/view/OnImageTouchedListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/view/OnImageTouchedListener.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/view/SquareLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/view/SquareLayout.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/view/ViewPagerFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/view/ViewPagerFixed.java -------------------------------------------------------------------------------- /src/com/hankkin/SelectMutiImgDemo/view/ZoomableImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hankkin/SelectMutiImgDemo/HEAD/src/com/hankkin/SelectMutiImgDemo/view/ZoomableImageView.java --------------------------------------------------------------------------------