我的布局:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dip"
android:background="@drawable/feed_bg_newnew"
android:orientation="vertical" >
<include
android:id="@+id/header"
layout="@layout/info_header" />
<WebView
android:id="@+id/myWebView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dip" />
<include
android:id="@+id/imgAttachmentsRow"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:layout_marginTop="5dip"
layout="@layout/attachemnts_thumbs_container"
android:visibility="invisible" />
<include
android:id="@+id/docAttachmentsContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
layout="@layout/document_attachments_thumbs_container"
android:visibility="invisible" />
<include
android:id="@+id/feedItemFooter"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/feed_row_footer" />
</LinearLayout>
Webview 不显示,我也没有将其隐藏在代码中。所有其他视图正确显示。如果我单击包含其中一部分的按钮,则会显示 webview。webView 的内容是从字符串加载的。
有什么问题?