这是一个3行的EditText,
光标默认第一行,
进入activity之后不显示键盘
edittext失去焦点
<EditText
android:id="@+id/reform_result"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:hint="详细描写叙述"
android:lines="3"
android:maxLines="3"
android:gravity="top"
android:focusable="true"
android:focusableInTouchMode="true"/>
隐藏键盘
在mainfest文件里把相应的activity设置
android:windowSoftInputMode="stateHidden"
时间: 2024-10-12 13:54:34