当我触摸edittext时,我想从edittext中删除蓝线,但我不知道如何删除它。请参阅图片以了解更多
答案 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标记,以便自动将焦点丢失