4

我在网上找不到这个。我在 a 中有很多 webview HorizontalScrollView,我希望它们都适合它的内容(然后可能有不同的宽度)。更多,我夸大了webviews这样的:

LinearLayout layout = (LinearLayout)getLayoutInflater().inflate(R.layout.webview_holder, null);
webView =  (WebView) layout.findViewById(R.id.webView);
webView.loadData(data, "text/html; charset=UTF-8", "UTF-8");
webView.getSettings().setUseWideViewPort(true);
webView.setScrollbarFadingEnabled(true);
pageHolder.addView(layout);

“页面持有人” layout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <HorizontalScrollView
    android:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:orientation="horizontal" >

    <LinearLayout
        android:id="@+id/page_holder"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="horizontal">
    </LinearLayout>
    </HorizontalScrollView>
</LinearLayout>

然后是“webview 布局”:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent">
    <WebView 
    android:id="@+id/webView"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"/>
</LinearLayout>
4

1 回答 1

9

wrap_contentWebViews的问题在于网页的呈现与视图层次结构中的布局是异步的。当 Android 测量 webview 的大小以确定将它们放置在 LinearLayout 中的哪个位置时,页面可能尚未呈现,因此宽度为 0。您需要为每个 WebView 添加一个 PictureListener 并确定何时调用了所有onNewPicture(WebView, Picture)回调。然后您可以调用requestLayout()您的 LinearLayout 来安排布局传递。

于 2013-05-16T14:32:06.177 回答