├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── README.md ├── docs └── icon.png ├── project.properties ├── res ├── drawable-hdpi │ └── icon.png ├── drawable-ldpi │ └── icon.png ├── drawable-mdpi │ └── icon.png ├── drawable │ ├── page1.jpg │ └── page2.jpg ├── layout │ ├── list_example.xml │ ├── list_item.xml │ ├── main.xml │ └── standalone_example.xml └── values │ ├── attrs.xml │ └── strings.xml └── src └── com └── mystictreegames └── pagecurl ├── AndroidPageCurlActivity.java ├── ListExample.java ├── PageAdapter.java ├── PageCurlView.java └── StandaloneExample.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/README.md -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/docs/icon.png -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /res/drawable/page1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/drawable/page1.jpg -------------------------------------------------------------------------------- /res/drawable/page2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/drawable/page2.jpg -------------------------------------------------------------------------------- /res/layout/list_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/layout/list_example.xml -------------------------------------------------------------------------------- /res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/layout/list_item.xml -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/layout/standalone_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/layout/standalone_example.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/mystictreegames/pagecurl/AndroidPageCurlActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/src/com/mystictreegames/pagecurl/AndroidPageCurlActivity.java -------------------------------------------------------------------------------- /src/com/mystictreegames/pagecurl/ListExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/src/com/mystictreegames/pagecurl/ListExample.java -------------------------------------------------------------------------------- /src/com/mystictreegames/pagecurl/PageAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/src/com/mystictreegames/pagecurl/PageAdapter.java -------------------------------------------------------------------------------- /src/com/mystictreegames/pagecurl/PageCurlView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/src/com/mystictreegames/pagecurl/PageCurlView.java -------------------------------------------------------------------------------- /src/com/mystictreegames/pagecurl/StandaloneExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/android-page-curl/HEAD/src/com/mystictreegames/pagecurl/StandaloneExample.java --------------------------------------------------------------------------------