我如何删除按钮(放大/缩小),搜索栏,即删除地图上的所有按钮。
有没有办法删除输入按钮等?我想是的,但是用javascript
地图:
<WebView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent" android:clickable="true"></WebView>
怎么打电话?
webView = (WebView) itemLayoutView.findViewById(R.id.mapView);
webView.setWebViewClient(new WebViewClient());
注意:我加载了网址地图
答案 0 :(得分:0)
添加此
webView.setDisplayZoomControls(false);
如果其他方式不起作用,请使用WebSettings
WebSettings webSettings = webView.getSettings();
webSettings.setBuiltInZoomControls(false);
设置WebView是否应使用其内置缩放机制。内置的缩放机制包括屏幕上的缩放控件,这些控件显示在WebView的内容上,并使用捏合手势来控制缩放。是否显示这些屏幕控件可以使用setDisplayZoomControls(boolean)进行设置。默认值为false。
如果您知道如何处理JavaScript
,请自行尝试:
webView.loadDataWithBaseURL(null,"<script> Here the script </script>","text/html","utf-8",null);