如何使用Webview打开Goog​​le地图应用

时间:2013-02-12 07:49:21

标签: android google-maps webview

所以我有这个应用程序直接在应用程序中加载Webview(这意味着它不会在应用程序外打开浏览器,但嵌入式)

现在在网页上我有链接到googlemaps。我想点击该链接,使此链接打开手机上安装的原始Google地图应用,而不是打开嵌入式网页浏览中的链接。

这可能吗?

我的实际网络视图设置:

webView=(WebView)findViewById(R.id.webview);
webView.getSettings().setAppCacheMaxSize( 10 * 1024 * 1024 );
webView.getSettings().setAppCachePath( getApplicationContext().getCacheDir().getAbsolutePath()+ "/cache" );
webView.getSettings().setAllowFileAccess( true );
webView.getSettings().setAppCacheEnabled( true );
webView.getSettings().setJavaScriptEnabled( true );
webView.getSettings().setDomStorageEnabled( true );
webView.getSettings().setCacheMode( WebSettings.LOAD_DEFAULT );
webView.setWebChromeClient(new WebChromeClient()); 
webView.setWebViewClient(new WebViewClient());
webView.setBackgroundColor(0x00000000);

0 个答案:

没有答案