├── .gitignore ├── LICENSE ├── README.md └── TinderView_Demo ├── .classpath ├── .project ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── baby1.jpg │ ├── bg_selector.xml │ ├── camera.png │ ├── cats.jpg │ ├── dislike.png │ ├── face.png │ ├── heart.png │ ├── ic_like.png │ ├── like.png │ ├── people.png │ ├── puppy.jpg │ ├── sachin.jpg │ └── slideshow.png ├── layout │ ├── activity_main.xml │ ├── custom_layout.xml │ ├── fragment_main.xml │ └── mainlayout.xml ├── menu │ └── main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── example └── tinderview_demo ├── DetailsActivity.java └── MainActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/README.md -------------------------------------------------------------------------------- /TinderView_Demo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/.classpath -------------------------------------------------------------------------------- /TinderView_Demo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/.project -------------------------------------------------------------------------------- /TinderView_Demo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/AndroidManifest.xml -------------------------------------------------------------------------------- /TinderView_Demo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/ic_launcher-web.png -------------------------------------------------------------------------------- /TinderView_Demo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /TinderView_Demo/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/proguard-project.txt -------------------------------------------------------------------------------- /TinderView_Demo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/project.properties -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/baby1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/baby1.jpg -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/bg_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/bg_selector.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/camera.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/cats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/cats.jpg -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/dislike.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/face.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/heart.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/ic_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/ic_like.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/like.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/people.png -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/puppy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/puppy.jpg -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/sachin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/sachin.jpg -------------------------------------------------------------------------------- /TinderView_Demo/res/drawable/slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/drawable/slideshow.png -------------------------------------------------------------------------------- /TinderView_Demo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/layout/activity_main.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/layout/custom_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/layout/custom_layout.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/layout/mainlayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/layout/mainlayout.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/menu/main.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/values-v11/styles.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/values-v14/styles.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/values/dimens.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/values/strings.xml -------------------------------------------------------------------------------- /TinderView_Demo/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/res/values/styles.xml -------------------------------------------------------------------------------- /TinderView_Demo/src/com/example/tinderview_demo/DetailsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/src/com/example/tinderview_demo/DetailsActivity.java -------------------------------------------------------------------------------- /TinderView_Demo/src/com/example/tinderview_demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grishu/TinderView-Control/HEAD/TinderView_Demo/src/com/example/tinderview_demo/MainActivity.java --------------------------------------------------------------------------------