├── .gitignore ├── .idea ├── compiler.xml ├── encodings.xml ├── gradle.xml ├── misc.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── oswaldogh89 │ │ └── latestphotosgallery │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── oswaldogh89 │ │ └── library │ │ ├── Image.java │ │ ├── ItemAdapter.java │ │ └── LatestImages.java │ └── res │ ├── drawable-hdpi │ └── check_icon.png │ ├── drawable-mdpi │ └── check_icon.png │ ├── drawable-nodpi │ └── screen.jpg │ ├── drawable-xhdpi │ └── check_icon.png │ ├── drawable-xxhdpi │ └── check_icon.png │ ├── drawable-xxxhdpi │ └── check_icon.png │ ├── layout │ ├── list_item.xml │ └── template.xml │ └── values │ ├── attrs.xml │ └── strings.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/oswaldogh89/latestphotosgallery/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/java/com/oswaldogh89/latestphotosgallery/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/oswaldogh89/library/Image.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/java/com/oswaldogh89/library/Image.java -------------------------------------------------------------------------------- /library/src/main/java/com/oswaldogh89/library/ItemAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/java/com/oswaldogh89/library/ItemAdapter.java -------------------------------------------------------------------------------- /library/src/main/java/com/oswaldogh89/library/LatestImages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/java/com/oswaldogh89/library/LatestImages.java -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/check_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/drawable-hdpi/check_icon.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/check_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/drawable-mdpi/check_icon.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-nodpi/screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/drawable-nodpi/screen.jpg -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/check_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/drawable-xhdpi/check_icon.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/check_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/drawable-xxhdpi/check_icon.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxxhdpi/check_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/drawable-xxxhdpi/check_icon.png -------------------------------------------------------------------------------- /library/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/layout/template.xml -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oswaldo89/LatestPhotoGallery-library/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------