├── .gitignore ├── AndroidManifest.xml ├── README.md ├── WebviewVideo.iml ├── ant.properties ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── layout │ ├── main.xml │ └── video_progress.xml └── values │ └── strings.xml └── src └── com └── example └── webview └── MyActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/README.md -------------------------------------------------------------------------------- /WebviewVideo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/WebviewVideo.iml -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/ant.properties -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/layout/video_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/res/layout/video_progress.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/example/webview/MyActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhgupta/WebviewVideo/HEAD/src/com/example/webview/MyActivity.java --------------------------------------------------------------------------------