android
gaofeiyunb
软件研发,项目管理,爱好开源
展开
-
java.lang.illegalargumentexception view not attached to window manager 解决
今天在发布到开发板测试时发现java.lang.illegalargumentexception: view not attached to window manager问题 引起的原因: A应用在使用Intent显示启动其他应用,当关闭其他应用显A应用界面时报错。 解决方法1: A应用使用startActivityForResult(intent)启动其他应用原创 2010-02-10 14:18:00 · 7688 阅读 · 2 评论 -
android ViewHolder模式超简洁写法
[java] view plaincopy ViewHolder holder = null; if(convertView == null){ convertView = mInflater.inflate(R.layout.xxx null); hol转载 2014-06-24 21:00:30 · 10537 阅读 · 1 评论