摘要: 原文地址:http://woshixy.blog.51cto.com/5637578/1081913目前大多数手机都支持重力感应随之而来的就是屏幕方向改变的问题。对应普通开发者来说屏幕的随意改变也会带来困扰。在Google自带的doc里可以看到,如果设备的配置(Resources.Configura... 阅读全文
posted @ 2014-07-07 14:57 下一次ai微笑 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://blog.csdn.net/yunnywu/article/details/79260151)、AndroidManifest.xml文件中界面对应的里加入 android:windowSoftInputMode="adjustPan" 键盘就会覆盖屏幕 android:wi... 阅读全文
posted @ 2014-07-07 14:54 下一次ai微笑 阅读(1223) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/2745061/java-lang-illegalargumentexception-view-not-attached-to-window-manager 阅读全文
posted @ 2014-07-05 13:54 下一次ai微笑 阅读(262) 评论(0) 推荐(0) 编辑
摘要: Export aborted because fatal lint errors were found.These are listed in the Problems view.Either fix these before running Export again,or turn off "Ru... 阅读全文
posted @ 2014-07-05 12:01 下一次ai微笑 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 今天遇到一个很奇特的问题,当用户设置了PIN码,在锁屏界面正常解锁PIN码后,进入Launcher时显示com.android.phone 已停止运行。一开始猜想会不会是解锁PIN码的时候处理导致了Phone进程报错,通过log分析找到了问题的大概原因:[plain]view plaincopyAn... 阅读全文
posted @ 2014-07-03 21:49 下一次ai微笑 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 转载自http://blog.csdn.net/junjx/article/details/7798604在Android开发中,我们经常需要加载图片。但是图片的尺寸往往会很大,如果我们要的是比较小的图片,在Android有限的内存下,我们显然不能把大尺寸的图片放到内存里,这样不但效率降低,而且会导... 阅读全文
posted @ 2014-06-18 14:03 下一次ai微笑 阅读(657) 评论(0) 推荐(0) 编辑
摘要: 在子组件的onTouch()中调用scrollView.requestDisallowInterceptTouchEvent(true);即可屏蔽 阅读全文
posted @ 2014-06-16 14:04 下一次ai微笑 阅读(596) 评论(0) 推荐(0) 编辑
摘要: 如果ListView中的单个Item的view中存在checkbox,button等view,会导致ListView.setOnItemClickListener无效,事件会被子View捕获到,ListView无法捕获处理该事件.解决方法:在checkbox、button对应的view处加andro... 阅读全文
posted @ 2014-06-12 18:00 下一次ai微笑 阅读(922) 评论(0) 推荐(0) 编辑
摘要: EditText.addTextChangedListener(newTextWatcher(){@OverridepublicvoidonTextChanged(CharSequences,intstart,intbefore,intcount){ }@Overridepublicvoi... 阅读全文
posted @ 2014-06-12 17:56 下一次ai微笑 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 1、EditText输入的文字为密码形式的设置(1)通过.xml里设置:把该EditText设为:android:password="true"// 以”.”形式显示文本(2)在代码里设置:通过设置EditText的setTransformationMethod()方法来实现隐藏密码或这显示密码。e... 阅读全文
posted @ 2014-06-12 17:53 下一次ai微笑 阅读(436) 评论(0) 推荐(0) 编辑