8

在我的 android 应用程序中,在我的个人资料编辑页面中,当我开始活动时,第一个 edittext 字段被聚焦(闪烁光标),并且键盘被显示。

我怎样才能让它专注于启动(闪烁光标)但防止键盘出现?如果那是不可能的,那么就不要将编辑文本集中在启动上。

谢谢。

        <EditText
            android:id="@+id/textinput_firstname"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ems="10"
            android:inputType="textPersonName"
            android:text="test" />
4

2 回答 2

18

onCreate(...)只需在您的方法中添加这行代码

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
于 2013-07-18T01:03:46.167 回答
1

对于大多数用户来说,EditText 可能会发生这种情况,您所要做的就是转到布局文件并设置布局的视图组属性,如下所示:

 android:focusable="true"
 android:focusableInTouchMode="true"

例如。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:background="@color/colorPrimary"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:focusable="true"
    android:focusableInTouchMode="true"> 
    <EditText
        android:layout_width="match_parent"
        android:layout_height="41dp"
      />
</LinearLayout>

注意:你必须为布局中的第一个视图设置属性,不管它是什么,这会将默认焦点设置为 false;

于 2020-10-27T22:24:54.767 回答