当我进入视图时,键盘在第一个editText上自动打开,我的视图在scrollView上。
我的editText:
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:hint="@string/nom"
android:ems="25"
android:id="@+id/etNom"
android:textSize="20sp"
android:layout_marginTop="10dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginBottom="5dp"
android:background="@drawable/edit_text_custom"
android:padding="5dp"/>
答案 0 :(得分:0)
把它放在你的清单上:
android:windowSoftInputMode="stateAlwaysHidden"
防止在开始时打开。 如果需要,您也可以从其他视图请求焦点。
希望它有所帮助!
答案 1 :(得分:0)
答案: 我把它放在我的LinearLayout上:
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"