5

我有包含滚动分区的 Html 文件。当我在 WebView 中添加此 HTML 时,它不会显示该 div 的滚动条。

我在 Html 文件中有代码。

// some Html code


<table style="border: 3px solid black;" align="center">
 <tr>
<td ><div style="width: 100%; height: 50px; overflow: auto;  padding:0px; "> <div>
  put returns between paragraphs
► for linebreak add 2 spaces at end
► _italic_ or **bold**
► indent code by 4 spaces
► backtick escapes `like _so_`
► quote by placing > at start of line
► to make links
<http://foo.com>
 [foo](http://foo.com)
► basic HTML also allowed

 </div></td>
</tr>
</table>

// some Html code

当我在 xml 文件中的 WebView 中添加此 Html 文件时。

XML的代码是...

// 一些 Html 代码

<RelativeLayout
    android:id="@+id/webLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/buttonLayout"
    android:layout_below="@+id/titleLayout" >

    <WebView
        android:id="@+id/webViewMain"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </WebView>
</RelativeLayout>

// 一些 Html 代码

它工作正常,但不显示添加到 Html 文件中的那个 Div 的滚动条

4

1 回答 1

2

滚动 divoverflow:auto当前在 Android 上不可用。但是您可以通过结合使用 HTML、JavaScript 和 CSS 进行一些工作来实现相同的目的。有关详细信息,请参阅链接。

另一个解决方案是,您可以使用iScroll库。

为了您的信息,这里是一个很好的比较,什么可能或可能不是,以及如何在各种移动浏览器上工作

于 2012-06-27T08:11:21.880 回答