Android EditText设置可以编辑和不可编辑状态

来源:互联网 发布:诺基亚500软件 编辑:程序博客网 时间:2024/05/16 07:21
不可编辑状态:

editText.setFocusable(false);

editText.setFocusableInTouchMode(false);


可编辑状态:

editText.setFocusableInTouchMode(true);

editText.setFocusable(true);

editText.requestFocus();

原创粉丝点击