1.EditText默认就会自动获取焦点, 如何让EditText不自动获取焦点?
解决之道:在EditText的父级控件中找一个,设置成
android:focusable="true"
android:focusableInTouchMode="true"
InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE); imm.toggleSoftInput(0, InputMethodManager.RESULT_SHOWN); imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);