关于android 研发过程中, EditText 失去光标焦点
2021-10-21 本文已影响0人
令狐小冲
在其父控件下,添加如下的属性,就可以完美解决。
android:focusable="true"
android:focusableInTouchMode="true"
示例代码:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:focusable="true"
android:focusableInTouchMode="true"
>
<EditText
android:id="@+id/nameEt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
<Button
android:id="@+id/submit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确认"
/>
</LinearLayout>