摘要: 1 /** 2 * 设置EditText是否可编辑 3 * @author com.tiantian 4 * @param editText 要设置的EditText 5 * @param value 可编辑:true 不可编辑:false 6 */ 7 private void setEditTextEditable(EditText editText, boolean value){ 8 if(value){ 9 editText.setFocusableInTouchMode(true);... 阅读全文
posted @ 2012-06-15 10:37 天天_byconan 阅读(1871) 评论(0) 推荐(0) 编辑