下面是我的 main.xml 文件,其中 Webview 放在 ScrllView 中,如果内容更多,则可以滚动。
<ScrollView
android:id="@+id/svWriteScrollView"
android:fillViewport="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<WebView
android:id="@+id/webVi"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</ScrollView>
我正在将带有 contenteditable TRUE 标志的 html 内容加载到上面的 WebView 中。
每当我用 softKeypad 输入更多文本时,输入低于 IME 的文本和任何输入都不可见。
如何在 IME 上方显示输入的文本。
谢谢,