├── .classpath ├── .gitignore ├── .project ├── CHANGELOG.txt ├── LICENSE ├── LICENSE.txt ├── README.md ├── assets └── README ├── dist ├── com.gbaldera.titouchgallery-android-1.0.zip ├── com.gbaldera.titouchgallery-android-1.1.zip ├── com.gbaldera.titouchgallery-android-1.2.zip └── titouchgallery.jar ├── documentation └── index.md ├── example └── app.js ├── hooks ├── README ├── add.py ├── install.py ├── remove.py └── uninstall.py ├── libs ├── armeabi-v7a │ └── libcom.gbaldera.titouchgallery.so ├── armeabi │ └── libcom.gbaldera.titouchgallery.so └── x86 │ └── libcom.gbaldera.titouchgallery.so ├── manifest ├── platform ├── README └── android │ └── 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 ├── com │ └── gbaldera │ │ └── titouchgallery │ │ ├── RHelper.java │ │ ├── TitouchgalleryModule.java │ │ ├── TouchGalleryProxy.java │ │ └── TouchGalleryView.java └── 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 ├── timodule.xml └── titouchgallery.iml /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | bin 3 | build 4 | .apt_generated 5 | .settings 6 | .idea 7 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/.project -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/README.md -------------------------------------------------------------------------------- /assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/assets/README -------------------------------------------------------------------------------- /dist/com.gbaldera.titouchgallery-android-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/dist/com.gbaldera.titouchgallery-android-1.0.zip -------------------------------------------------------------------------------- /dist/com.gbaldera.titouchgallery-android-1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/dist/com.gbaldera.titouchgallery-android-1.1.zip -------------------------------------------------------------------------------- /dist/com.gbaldera.titouchgallery-android-1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/dist/com.gbaldera.titouchgallery-android-1.2.zip -------------------------------------------------------------------------------- /dist/titouchgallery.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/dist/titouchgallery.jar -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/documentation/index.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/example/app.js -------------------------------------------------------------------------------- /hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/hooks/README -------------------------------------------------------------------------------- /hooks/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/hooks/add.py -------------------------------------------------------------------------------- /hooks/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/hooks/install.py -------------------------------------------------------------------------------- /hooks/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/hooks/remove.py -------------------------------------------------------------------------------- /hooks/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/hooks/uninstall.py -------------------------------------------------------------------------------- /libs/armeabi-v7a/libcom.gbaldera.titouchgallery.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/libs/armeabi-v7a/libcom.gbaldera.titouchgallery.so -------------------------------------------------------------------------------- /libs/armeabi/libcom.gbaldera.titouchgallery.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/libs/armeabi/libcom.gbaldera.titouchgallery.so -------------------------------------------------------------------------------- /libs/x86/libcom.gbaldera.titouchgallery.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/libs/x86/libcom.gbaldera.titouchgallery.so -------------------------------------------------------------------------------- /manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/manifest -------------------------------------------------------------------------------- /platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/README -------------------------------------------------------------------------------- /platform/android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /platform/android/res/drawable-hdpi/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/drawable-hdpi/no_photo.png -------------------------------------------------------------------------------- /platform/android/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /platform/android/res/drawable-ldpi/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/drawable-ldpi/no_photo.png -------------------------------------------------------------------------------- /platform/android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /platform/android/res/drawable-mdpi/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/drawable-mdpi/no_photo.png -------------------------------------------------------------------------------- /platform/android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /platform/android/res/drawable-xhdpi/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/drawable-xhdpi/no_photo.png -------------------------------------------------------------------------------- /platform/android/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/layout/main.xml -------------------------------------------------------------------------------- /platform/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/platform/android/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/gbaldera/titouchgallery/RHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/com/gbaldera/titouchgallery/RHelper.java -------------------------------------------------------------------------------- /src/com/gbaldera/titouchgallery/TitouchgalleryModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/com/gbaldera/titouchgallery/TitouchgalleryModule.java -------------------------------------------------------------------------------- /src/com/gbaldera/titouchgallery/TouchGalleryProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/com/gbaldera/titouchgallery/TouchGalleryProxy.java -------------------------------------------------------------------------------- /src/com/gbaldera/titouchgallery/TouchGalleryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/com/gbaldera/titouchgallery/TouchGalleryView.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/GalleryWidget/BasePagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/GalleryWidget/BasePagerAdapter.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/GalleryWidget/FilePagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/GalleryWidget/FilePagerAdapter.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/GalleryWidget/GalleryViewPager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/GalleryWidget/GalleryViewPager.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/GalleryWidget/InfinityFilePagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/GalleryWidget/InfinityFilePagerAdapter.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/GalleryWidget/InfinityUrlAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/GalleryWidget/InfinityUrlAdapter.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/GalleryWidget/UrlPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/GalleryWidget/UrlPagerAdapter.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/TouchView/EclairMotionEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/TouchView/EclairMotionEvent.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/TouchView/FileTouchImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/TouchView/FileTouchImageView.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/TouchView/InputStreamWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/TouchView/InputStreamWrapper.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/TouchView/TouchImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/TouchView/TouchImageView.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/TouchView/UrlTouchImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/TouchView/UrlTouchImageView.java -------------------------------------------------------------------------------- /src/ru/truba/touchgallery/TouchView/WrapMotionEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/src/ru/truba/touchgallery/TouchView/WrapMotionEvent.java -------------------------------------------------------------------------------- /timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/timodule.xml -------------------------------------------------------------------------------- /titouchgallery.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbaldera/TiTouchGallery/HEAD/titouchgallery.iml --------------------------------------------------------------------------------