我有需要在 webview 中加载 url 并在该 webview 中单击按钮的要求,我必须打开一个新的 webview。
我已经为它编写了以下代码,但它不会抛出任何异常加载新页面/webview。
我必须为此使用单一活动。如果您有任何想法,请提供解决方案。
public class WebScreen extends Activity{
public static final String URL = null;
NewWebview mWebView=null;
WebView webView=null;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webscreen);
String url = getIntent().getExtras().getString("URL");
Log.i("URLLL",url);
webView = new WebView(this);
webView.loadUrl(url);
mWebView = new NewWebview(this);
}
}
public class NewWebview {
private Context context;
public NewWebview(Context context) {
// TODO Auto-generated constructor stub
Log.i("","New webViewwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww");
this.context=context;
WebView webView=new WebView(context);
((Activity)context).setContentView(R.layout.webscreen);
webView.loadUrl("www.google.com");
}
}
谢谢斯内哈
_