我正在尝试在我的 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);
}
});