├── .gitignore ├── FlipImageView_sample.apk ├── Library ├── AndroidManifest.xml ├── build.gradle ├── res │ └── values │ │ ├── fiv__attrs.xml │ │ └── fiv__defaults.xml └── src │ └── fr │ └── castorflex │ └── android │ └── flipimageview │ └── library │ └── FlipImageView.java ├── README.md ├── Sample ├── AndroidManifest.xml ├── build.gradle ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_action_star_0.png │ │ ├── ic_action_star_10.png │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── fr │ └── castorflex │ └── android │ └── flipimageview │ └── sample │ └── SampleActivity.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/.gitignore -------------------------------------------------------------------------------- /FlipImageView_sample.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/FlipImageView_sample.apk -------------------------------------------------------------------------------- /Library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Library/AndroidManifest.xml -------------------------------------------------------------------------------- /Library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Library/build.gradle -------------------------------------------------------------------------------- /Library/res/values/fiv__attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Library/res/values/fiv__attrs.xml -------------------------------------------------------------------------------- /Library/res/values/fiv__defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Library/res/values/fiv__defaults.xml -------------------------------------------------------------------------------- /Library/src/fr/castorflex/android/flipimageview/library/FlipImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Library/src/fr/castorflex/android/flipimageview/library/FlipImageView.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/README.md -------------------------------------------------------------------------------- /Sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/AndroidManifest.xml -------------------------------------------------------------------------------- /Sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/build.gradle -------------------------------------------------------------------------------- /Sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/project.properties -------------------------------------------------------------------------------- /Sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/res/drawable-xhdpi/ic_action_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/drawable-xhdpi/ic_action_star_0.png -------------------------------------------------------------------------------- /Sample/res/drawable-xhdpi/ic_action_star_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/drawable-xhdpi/ic_action_star_10.png -------------------------------------------------------------------------------- /Sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/layout/main.xml -------------------------------------------------------------------------------- /Sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/res/values/strings.xml -------------------------------------------------------------------------------- /Sample/src/fr/castorflex/android/flipimageview/sample/SampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorflex/FlipImageView/HEAD/Sample/src/fr/castorflex/android/flipimageview/sample/SampleActivity.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':Library', ':Sample' --------------------------------------------------------------------------------