网站未在网页浏览中打开

时间:2012-12-12 07:52:35

标签: android 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 个答案:

答案 0 :(得分:3)

您应该覆盖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;
  }
}

答案 1 :(得分:0)

添加此行可能有所帮助:

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

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

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

此外,如果使用大于等于11的API控制杆,则可以在应用程序级别显示

 android:hardwareAccelerated="true"

答案 2 :(得分:0)

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

mweb.setWebViewClient(new WebViewClient());

答案 3 :(得分:-3)

您可以使用Direct this&gt;

   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);  
            }
        });