├── .gitignore ├── README.md ├── example ├── AndroidManifest.xml ├── TouchGallery.iml ├── assets │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ └── 5.jpg ├── lint.xml ├── project.properties ├── res │ ├── drawable │ │ └── icon.png │ ├── layout │ │ ├── activity_main.xml │ │ └── main.xml │ ├── menu │ │ └── activity_main.xml │ └── values │ │ └── strings.xml └── src │ └── ru │ └── truba │ └── touchgallery │ ├── GalleryFileActivity.java │ ├── GalleryUrlActivity.java │ └── MainActivity.java └── library ├── AndroidManifest.xml ├── README.md ├── ant.properties ├── build.xml ├── libs └── android-support-v4.jar ├── pom.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_launcher.png │ └── no_photo.png ├── drawable-ldpi │ ├── ic_launcher.png │ └── no_photo.png ├── drawable-mdpi │ ├── ic_launcher.png │ └── no_photo.png ├── drawable-xhdpi │ ├── ic_launcher.png │ └── no_photo.png ├── layout │ └── main.xml └── values │ └── strings.xml └── src └── ru └── truba └── touchgallery ├── GalleryWidget ├── BasePagerAdapter.java ├── FilePagerAdapter.java ├── GalleryViewPager.java ├── InfinityFilePagerAdapter.java ├── InfinityUrlAdapter.java └── UrlPagerAdapter.java └── TouchView ├── EclairMotionEvent.java ├── FileTouchImageView.java ├── InputStreamWrapper.java ├── TouchImageView.java ├── UrlTouchImageView.java └── WrapMotionEvent.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/README.md -------------------------------------------------------------------------------- /example/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/AndroidManifest.xml -------------------------------------------------------------------------------- /example/TouchGallery.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/TouchGallery.iml -------------------------------------------------------------------------------- /example/assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/assets/1.jpg -------------------------------------------------------------------------------- /example/assets/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/assets/2.jpg -------------------------------------------------------------------------------- /example/assets/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/assets/3.jpg -------------------------------------------------------------------------------- /example/assets/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/assets/4.jpg -------------------------------------------------------------------------------- /example/assets/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/assets/5.jpg -------------------------------------------------------------------------------- /example/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/lint.xml -------------------------------------------------------------------------------- /example/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/project.properties -------------------------------------------------------------------------------- /example/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/res/drawable/icon.png -------------------------------------------------------------------------------- /example/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/res/layout/main.xml -------------------------------------------------------------------------------- /example/res/menu/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/res/menu/activity_main.xml -------------------------------------------------------------------------------- /example/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/res/values/strings.xml -------------------------------------------------------------------------------- /example/src/ru/truba/touchgallery/GalleryFileActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/src/ru/truba/touchgallery/GalleryFileActivity.java -------------------------------------------------------------------------------- /example/src/ru/truba/touchgallery/GalleryUrlActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/src/ru/truba/touchgallery/GalleryUrlActivity.java -------------------------------------------------------------------------------- /example/src/ru/truba/touchgallery/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/example/src/ru/truba/touchgallery/MainActivity.java -------------------------------------------------------------------------------- /library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/AndroidManifest.xml -------------------------------------------------------------------------------- /library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/README.md -------------------------------------------------------------------------------- /library/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/ant.properties -------------------------------------------------------------------------------- /library/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/build.xml -------------------------------------------------------------------------------- /library/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/libs/android-support-v4.jar -------------------------------------------------------------------------------- /library/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/pom.xml -------------------------------------------------------------------------------- /library/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/proguard-project.txt -------------------------------------------------------------------------------- /library/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/project.properties -------------------------------------------------------------------------------- /library/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/drawable-hdpi/no_photo.png -------------------------------------------------------------------------------- /library/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /library/res/drawable-ldpi/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/drawable-ldpi/no_photo.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/drawable-mdpi/no_photo.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/drawable-xhdpi/no_photo.png -------------------------------------------------------------------------------- /library/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/layout/main.xml -------------------------------------------------------------------------------- /library/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/GalleryWidget/BasePagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/GalleryWidget/BasePagerAdapter.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/GalleryWidget/FilePagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/GalleryWidget/FilePagerAdapter.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/GalleryWidget/GalleryViewPager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/GalleryWidget/GalleryViewPager.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/GalleryWidget/InfinityFilePagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/GalleryWidget/InfinityFilePagerAdapter.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/GalleryWidget/InfinityUrlAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/GalleryWidget/InfinityUrlAdapter.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/GalleryWidget/UrlPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/GalleryWidget/UrlPagerAdapter.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/TouchView/EclairMotionEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/TouchView/EclairMotionEvent.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/TouchView/FileTouchImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/TouchView/FileTouchImageView.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/TouchView/InputStreamWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/TouchView/InputStreamWrapper.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/TouchView/TouchImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/TouchView/TouchImageView.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/TouchView/UrlTouchImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/TouchView/UrlTouchImageView.java -------------------------------------------------------------------------------- /library/src/ru/truba/touchgallery/TouchView/WrapMotionEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanTruba/AndroidTouchGallery/HEAD/library/src/ru/truba/touchgallery/TouchView/WrapMotionEvent.java --------------------------------------------------------------------------------