我是新來的android programing.my問題是,在我的webview,當我點擊任何鏈接其打開一個新的web瀏覽器我不需要這個我希望它被打開在我的應用程序本身。有人幫助我?webview鏈接打開到默認瀏覽器
這是我的代碼
title = extras.getString("title");
url = extras.getString("url");
TextView text=(TextView) findViewById(R.id.textView1);
text.setText(title);
WebView myWebView =(WebView)findViewById(R.id.WebView);
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.setWebViewClient(new WebViewClient(){
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return false;
}
});
}
我試過,但我的web視圖沒有加載它顯示一個空白屏幕
檢查此鏈接http://www.tutorialspoint.com/android/ android_webview_layout.htm – Piyush 2014-11-08 04:45:41
檢查這個http://www.technotalkative.com/android-webviewclient-example/ – 2014-11-08 04:45:55
感謝你的回覆..它的工作完美.. – 2014-11-08 05:15:07