- 浏览: 2535 次
- 来自: ...
最新评论
文章列表
[img]http://dl.iteye.com/upload/attachment/536273/d881620e-1938-3607-ac20-c7b2e993d517.jpg" alt="[/img]
android EditText设为只读
- 博客分类:
- android
将 EditText设为只读,记录一下
mEditText.setCursorVisible(false);
mEditText.setFocusable(false);
mEditText.setFocusableInTouchMode(false);