Android Studio 无法编辑EditText字段

gk7wooem  于 2023-08-07  发布在  Android
关注(0)|答案(1)|浏览(160)

我的问题是,当我点击EditText字段时,它会得到焦点,但键盘不会出现。所以我不能输入任何信息。那会是什么?

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SettingFragment">

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <EditText
        android:id="@+id/userName"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="10dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="10dp"
        android:ems="10"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:hint="UserName"
        android:inputType="text"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

      ...
  />

/>

字符串

agyaoht7

agyaoht71#

使您没有其他视图与EditText字段重叠。
您可以尝试将android:windowSoftInputMode="stateVisible"添加到Manifest.xml中的活动声明中


的数据

相关问题