8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 548a908 + 34f0c40 commit cd81a6fCopy full SHA for cd81a6f
pythonforandroid/bootstraps/webview/build/src/main/java/org/kivy/android/PythonActivity.java
@@ -249,6 +249,16 @@ public void run() {
249
mActivity.runOnUiThread(new LoadUrl(url));
250
}
251
252
+ public static void enableZoom() {
253
+ mActivity.runOnUiThread(new Runnable() {
254
+ @Override
255
+ public void run() {
256
+ mWebView.getSettings().setBuiltInZoomControls(true);
257
+ mWebView.getSettings().setDisplayZoomControls(false);
258
+ }
259
+ });
260
261
+
262
public static ViewGroup getLayout() {
263
return mLayout;
264
0 commit comments