├── .classpath ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── WebView.apk ├── classes.dex ├── classes │ └── com │ │ └── example │ │ └── webview │ │ ├── BuildConfig.class │ │ ├── MainActivity$1.class │ │ ├── MainActivity.class │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ └── R.class ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png └── resources.ap_ ├── gen └── com │ └── example │ └── webview │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── layout │ └── activity_main.xml └── values │ └── strings.xml └── src └── com └── example └── webview └── MainActivity.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/README.md -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/WebView.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/WebView.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/com/example/webview/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/example/webview/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/MainActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/webview/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/example/webview/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/example/webview/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/example/webview/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/example/webview/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/example/webview/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/example/webview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/classes/com/example/webview/R.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/com/example/webview/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/gen/com/example/webview/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/example/webview/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/gen/com/example/webview/R.java -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/example/webview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickyQie/android-webview/HEAD/src/com/example/webview/MainActivity.java --------------------------------------------------------------------------------