Android 各种杀脑细胞的问题集合
1. EditText KeyBoard, 遮挡问题(集中表现为: 发送消息软件如何实现? 保证Title等不被软键盘吃掉)
http://unicorn25.iteye.com/blog/916504
如果ListView出现, 又需要这样解决了:
http://www.oschina.net/question/163910_27133
2. Android 程序如何完美退出(n个Activity出现的时候, 程序无法退出)
N多错误的解决方案:
a. 什么System.exit(),
b. 用static变量保存所有的Acitivity, 然后退出时销毁【按HOME键切换到其它程序时, static变量很容易被销毁】
c. 发送关闭的Intent. 这个是相当脑残的方法. 某些Acitiy还没有创建, 这个时候要去发送一个intent去创建, 简直多此一举.
利用Application 类去做!
Not recommened but still you can use this. Better go with this solution in case you need to quit the app. According to me the best solution is finish every activity in your app like below. step1) maintain a static variable in mainactivity say.
step2) on click event of an button make this variable to true.
step3) And in every activity of your application have onrestart method as below..
|
3. 中文无法导入到SDCard或者导出来
索性将UltraISO也传到CSDN下载.
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。