我在滚动视图中有一个 webView
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_header"
/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="match_parent"
>
<WebView
android:id="@+id/webView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</ScrollView>
</LinearLayout>
但是当我单击 webView 中的表单字段或编辑框(如登录字段等)时,它不会让我获得键盘
我试过删除 scrollView 。也许是因为一旦记录了值,我就让 webView “记住”了这些字段,这就是键盘不显示的原因?我怎样才能解决这个问题
我应该怎么办 :(