gpt4 book ai didi

java - android webView 中的 ScrollView 不显示键盘

转载 作者:行者123 更新时间:2023-12-01 14:33:43 25 4
gpt4 key购买 nike

我在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“记住”这些字段,这就是键盘不显示的原因?我该如何解决这个问题

我该怎么办:(

最佳答案

在 android list 的 Activity 标记中,查看您已给出的内容

android:configChanges="orientation|keyboard" 

你的代码可能有

android:configChanges="orientation|keyboardHidden"

检查一下并告诉我。

关于java - android webView 中的 ScrollView 不显示键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16662204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com