1.android EditText 去除边框

xml配置文件中: EditText的background属性设置为@null就搞定了:android:background="@null"

代码中: editText.setBackgroundColor(0);

2.EditText获取焦点 editText.requestFocus()获取焦点