0

我的布局:

<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 的内容是从字符串加载的。

有什么问题?

4

1 回答 1

0

webview 有它自己的“scrollview”系统。因此,当您的网页较长时,webview 会自动创建滚动,因此为已有的内容放置滚动视图是不合逻辑的。把它放在外面,它会显示得很好。

于 2013-06-03T11:13:19.933 回答