我似乎无法显示我的 WebView。我怀疑这是因为它的大小为 0。我不知道如何将这个 WebView 归零!
这是我的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
这是我的 onCreate():
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
View webViewLayout = ((LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE))
.inflate(R.layout.twitterfeed, null, false);
WebView webView = (WebView) webViewLayout.findViewById(R.id.webView1);
webView.getSettings().setDomStorageEnabled(true);
webView.getSettings().setJavaScriptEnabled(true);
String summary = "http://www.example.com";
webView.loadUrl(summary);
System.out.println("webView: " + webView.getWidth());
System.out.println("webView: " + webView.getHeight());
}