摘要: android的EditText控件实现只读只需设置三个方法: editText.setCursorVisible(false);//隐藏光标 editText.setFocusable(false);//失去焦点 editText.setFocusableInTouchMode(false);//... 阅读全文
posted @ 2014-09-26 18:46 新感觉 阅读(724) 评论(0) 推荐(0) 编辑
摘要: intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);FLAG_ACTIVITY_BROUGHT_TO_FRONT 这个标志一般不是由程序代码设置的,如在launchMode中设置singleTask模式时系统帮你设定。FLAG_ACTIVITY_... 阅读全文
posted @ 2014-09-26 15:22 新感觉 阅读(5248) 评论(0) 推荐(0) 编辑
摘要: 方法一:Intentintent=newIntent(); intent.setClassName(,);startActivity(intent);方法二:Intent i=new Intent;ComponentNamecom=newComponentName(,);i.setComponent... 阅读全文
posted @ 2014-09-26 15:10 新感觉 阅读(231) 评论(0) 推荐(0) 编辑
摘要: AlertDialog 是非阻塞式对话框:AlertDialog弹出时,后台还可以做事情;而PopupWindow是阻塞式对话框:PopupWindow弹出时,程序会等 待,在PopupWindow退出前,程序一直等待,只有当我们调用了dismiss方法的后,PopupWindow退出,程序才会向下... 阅读全文
posted @ 2014-09-26 14:37 新感觉 阅读(1144) 评论(0) 推荐(0) 编辑
摘要: /** Android开发之PopupWindow** Created on: 2011-8-8* Author: blueeagle* Email: liujiaxiang@gmail.com*/ 聪明的人善于总结,记录,不知道这是谁说的了,反正要当一个聪明人,我得先学会总结,记录。最近在Andr... 阅读全文
posted @ 2014-09-26 11:30 新感觉 阅读(561) 评论(0) 推荐(0) 编辑