如何从EditText中删除请求焦点?

时间:2013-03-21 12:38:50

标签: android android-edittext

当我触摸edittext时,我想从edittext中删除蓝线,但我不知道如何删除它。请参阅图片以了解更多enter image description here

3 个答案:

答案 0 :(得分:11)

这样做

lUserNameEditText.clearFocus();

另一种对我有效的方法是

lUserNameEditText.setBackgroundColor(0); 

答案 1 :(得分:4)

您是否尝试过像这样更改Layout XML

<EditText  
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:hint="Password" 
android:background="#00000000"
/>

或通过代码

进行
editTextView.setBackgroundColor(0);

答案 2 :(得分:1)

在xml布局中删除requestFocus标记,以便自动将焦点丢失