Android设计画面中有EditText时取消启动时自动获得焦点调用系统输入法的方法

Posted 曲幽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android设计画面中有EditText时取消启动时自动获得焦点调用系统输入法的方法相关的知识,希望对你有一定的参考价值。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"      
android:layout_width
="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true">

在设计画面的XML最底层元素上加上最后两句,让整个Layout获得焦点,这样在打开时EditText就不会自动调用系统输入法了

如果以上不能单纯的解决失去焦点的问题,可在java代码中Create方法里给第一个EditText控件调用clearFocus()方法

这样在第一个控件失去焦点时,焦点不会移到下一个EditText,而是直接交给父容器。

以上是关于Android设计画面中有EditText时取消启动时自动获得焦点调用系统输入法的方法的主要内容,如果未能解决你的问题,请参考以下文章

android EditText焦点问题

EditText取消自动调用键盘事件(方法之一)

在Android开发中如何移除EditText上的输入焦点

取消 EditText 自动聚焦弹出输入法界面

android中EditText的焦点[重复]

android中EditText内的可点击按钮(或任何视图)