scrollView 内に 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 がそれらのフィールドを「記憶」したため、キーボードが表示されないのはなぜですか? どうすればこれを修正できますか
私は何をすべきか :(