├── .gitignore ├── README.md ├── lib ├── AndroidManifest.xml ├── ant.properties ├── build.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── scvngr │ └── levelup │ └── views │ └── gallery │ ├── AbsSpinner.java │ ├── AdapterView.java │ └── Gallery.java └── sample ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_action_search.png │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ ├── ic_action_search.png │ └── ic_launcher.png ├── drawable-xhdpi │ ├── bg_gallery.9.png │ ├── ic_action_search.png │ └── ic_launcher.png ├── layout │ ├── activity_main.xml │ └── gallery_item.xml ├── menu │ └── activity_main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── arrays.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── scvngr └── levelup └── leftlockedgalleryexample └── MainActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/README.md -------------------------------------------------------------------------------- /lib/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/AndroidManifest.xml -------------------------------------------------------------------------------- /lib/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/ant.properties -------------------------------------------------------------------------------- /lib/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/build.xml -------------------------------------------------------------------------------- /lib/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/proguard-project.txt -------------------------------------------------------------------------------- /lib/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/project.properties -------------------------------------------------------------------------------- /lib/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/res/layout/main.xml -------------------------------------------------------------------------------- /lib/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/res/values/strings.xml -------------------------------------------------------------------------------- /lib/src/com/scvngr/levelup/views/gallery/AbsSpinner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/src/com/scvngr/levelup/views/gallery/AbsSpinner.java -------------------------------------------------------------------------------- /lib/src/com/scvngr/levelup/views/gallery/AdapterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/src/com/scvngr/levelup/views/gallery/AdapterView.java -------------------------------------------------------------------------------- /lib/src/com/scvngr/levelup/views/gallery/Gallery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/lib/src/com/scvngr/levelup/views/gallery/Gallery.java -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/ic_launcher-web.png -------------------------------------------------------------------------------- /sample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /sample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/proguard-project.txt -------------------------------------------------------------------------------- /sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/project.properties -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/bg_gallery.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/drawable-xhdpi/bg_gallery.9.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/res/layout/gallery_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/layout/gallery_item.xml -------------------------------------------------------------------------------- /sample/res/menu/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/menu/activity_main.xml -------------------------------------------------------------------------------- /sample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /sample/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/values-v14/styles.xml -------------------------------------------------------------------------------- /sample/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/values/arrays.xml -------------------------------------------------------------------------------- /sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/values/strings.xml -------------------------------------------------------------------------------- /sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/com/scvngr/levelup/leftlockedgalleryexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLevelUp/android-left-locked-gallery/HEAD/sample/src/com/scvngr/levelup/leftlockedgalleryexample/MainActivity.java --------------------------------------------------------------------------------