美文网首页
关于android 研发过程中, EditText 失去光标焦点

关于android 研发过程中, EditText 失去光标焦点

作者: 令狐小冲 | 来源:发表于2021-10-21 10:50 被阅读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>

相关文章

网友评论

      本文标题:关于android 研发过程中, EditText 失去光标焦点

      本文链接:https://www.haomeiwen.com/subject/fmdfaltx.html