当键盘打开的webview在android中向上移动?

时间:2018-10-18 07:31:14

标签: android webview keyboard

<ScrollView
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:fillViewport="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/card_view">

    <im.delight.android.webview.AdvancedWebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></im.delight.android.webview.AdvancedWebView>

</ScrollView>

当键盘出现时,如何从webview向上移动文本字段?

1 个答案:

答案 0 :(得分:1)

在您的AndroidManifest.xml中的标记中,添加以下内容:

<activity android:windowSoftInputMode="adjustPan"> </activity>

检查此以获取更多详细信息: https://stackoverflow.com/a/17410528/2709298