我创建了一个webview,但是在运行应用程序时它没有显示。有谁知道为什么?
这是我的代码。这是我加载webview并添加网址的地方:
_webView = (WebView) LayoutInflater.from(getBaseContext()).inflate(R.layout.clubdir, null);
_webView.getSettings().setJavaScriptEnabled(true);
_webView.getSettings().setBuiltInZoomControls(true);
_webView.getSettings().setSupportZoom(true);
_webView.setWebViewClient(new WebViewClient());
_webView.loadUrl("http://maps.google.com/maps?q=" + Postcode + "&ui=maps");
adapter = new MergeAdapter();
adapter.addView(ImageView);
adapter.addView(header);
adapter.addView(fixturesView);
adapter.addView(header2);
adapter.addView(resultsView);
adapter.addView(clubinfo);
adapter.addView(ClubInfo);
adapter.addView(clubdir);
adapter.addView(_webView);
adapter.addView(moreinfo);
adapter.addView(MoreInfo);
setListAdapter(adapter);
这是我正在膨胀的布局:
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="150dp">
</WebView>
答案 0 :(得分:4)
而不是尝试这个简单的事情:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<WebView android:id="@+id/webView"
android:layout_width="fill_parent"
android:layout_height="150dp">
</WebView>
</RelativeLayout>
在您的活动中:
WebView view=(WebView) findViewById(R.id.webView);
view.getSettings().setJavaScriptEnabled(true);
view.getSettings().setBuiltInZoomControls(true);
view.getSettings().setSupportZoom(true);
view.setWebViewClient(new WebViewClient());
view.loadUrl("http://maps.google.com/maps?q=Pizza,texas&ui=maps");
就是它。希望这会对你有所帮助。如果它有效,那么继续添加其他东西