我的问题是,当我点击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" />
...
/>
/>
字符串
1条答案
按热度按时间agyaoht71#
使您没有其他视图与EditText字段重叠。
您可以尝试将
android:windowSoftInputMode="stateVisible"
添加到Manifest.xml中的活动声明中的数据