0

我在 WebView 中制作了一个 android 应用程序。当我打开 Google 地图链接时,它会在 WebView 中打开,而不是在 Google 应用程序中。我怎样才能解决这个问题?我在 Google 和 Stack Overflow 上搜索过,但找不到任何解决方案。

代码:

public class FullscreenActivity extends Activity {

private WebView webView;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_fullscreen);

    webView = (WebView) findViewById(R.id.webView);
    webView.setWebViewClient(new myWebClient());
    webView.loadUrl("http://www.mywebsite.nl");
    webView.setVerticalScrollBarEnabled(false);
    WebSettings webSettings = webView.getSettings();
    webSettings.setJavaScriptEnabled(true);
}

public class myWebClient extends WebViewClient
{
    @Override
    public void onPageStarted(WebView view, String url, Bitmap favicon) {
    // TODO Auto-generated method stub
    super.onPageStarted(view, url, favicon);
}

@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {

if (url.startsWith("tel:")) { 
         Intent intent = new Intent(Intent.ACTION_DIAL,
                 Uri.parse(url)); 
         startActivity(intent); 
 }else if(url.startsWith("http:") || url.startsWith("https:")) {
     view.loadUrl(url);
 }
 return true;

    }
}
4

1 回答 1

0
Use following Map Fragment in Your layout xml file
 <fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="50dp"
    android:layout_marginTop="50dp"
    class="com.google.android.gms.maps.SupportMapFragment" />

并参考以下答案以获取更多详细信息

[http://stackoverflow.com/questions/16395495/add-google-map-to-android-app][1]
于 2013-09-30T11:46:24.377 回答