1

我正在尝试在我的 webview 中打开一个 url,但问题是 url 没有加载到我的 webview 中,它显示了选择浏览器的弹出窗口,一旦我点击一个选项,它就会在该浏览器中打开 url . 有人可以帮我解决这个问题吗,我希望 url 在 webview 本身而不是在浏览器中打开。

我的 webview xml 是:-

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/bg_new" >

    <RelativeLayout
        android:id="@+id/upBar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <ImageView
            android:id="@+id/header"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <ImageView
            android:id="@+id/wbview_bckbtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/back_btn_chng" />

    </RelativeLayout>

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/upBar" >

        <WebView
            android:id="@+id/linkwebview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:padding="10dp"
            android:scrollbars="none" />
    </RelativeLayout>

</RelativeLayout>

这是我的 webview 代码:-

public class FbTwtrLink extends Activity {

    WebView web;
    ImageView img,bckimg,share_btn; 

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_fb_twtr_link);

        img = (ImageView)findViewById(R.id.header);
        bckimg = (ImageView) findViewById(R.id.wbview_bckbtn);

        web=(WebView)findViewById(R.id.linkwebview);
        web.getSettings().setJavaScriptEnabled(true);

        web.loadUrl("http://www.google.com");

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_fb_twtr_link, menu);
        return true;
    }

}

我像这样调用webview:-

fbicon.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub


                Intent intent=new Intent(context,FbTwtrLink.class);
                //intent.putExtra("fb_link", 1);
                startActivity(intent);
            }
        });
4

4 回答 4

4

您应该覆盖WebViewClient及其方法shouldOverrideUrlLoading

 web.setWebViewClient(new MyWebClient()); 
 web.loadUrl("http://www.google.com");

class MyWebViewClient extends WebViewClient {
  @Override
  // show the web page in webview but not in web browser
   public boolean shouldOverrideUrlLoading(WebView view, String url) {
    //1 option 
    // getApplicationContext().startActivity(
    // new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
    // 2 option
    //view.loadUrl(url);
        return true;
  }
}
于 2012-12-12T08:02:06.287 回答
0

添加此行可能会有所帮助:

webView.getSettings().setPluginState(PluginState.ON);

还在清单中添加互联网权限

<uses-permission android:name="android.permission.INTERNET" />

此外,如果使用大于等于 11 的 API 杠杆,那么您可以在应用程序级别的清单中使用它

 android:hardwareAccelerated="true"
于 2012-12-12T07:57:15.927 回答
0

您可以添加以下语句以在 webview 中打开:

mweb.setWebViewClient(new WebViewClient());
于 2012-12-12T09:28:08.240 回答
-3

你可以使用直接这个>

   fbicon.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
Intent intent = new Intent (android.content.Intent.ACTION_VIEW, Uri.parse ("http://www,google.com")); // Prepare intent
        startActivity(intent);  
            }
        });
于 2012-12-12T07:58:32.960 回答