2021-06-29 打开页面默认自动弹出软键盘

1.清单文件中添加属性:

 android:windowSoftInputMode="stateVisible"

2.EditText中添加 属性


    android:windowSoftInputMode="stateVisible">



    android:id="@+id/edit"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:textSize="13sp"

    android:hint="请输入中药名称"

    android:textColor="@color/c_33"

    android:background="@null">

你可能感兴趣的:(2021-06-29 打开页面默认自动弹出软键盘)