摘要:
top1:\build\intermediates\res\resources-anzhi-debug-stripped.ap_' specified for property 'resourceFile' does not exist 错误产生原因: 如果需要设置shrinkResources 为 阅读全文
摘要:
1.删除app指定名数据库 2.Application 监听所有activity生命周期,可实现统一添加返回按钮等操作 3.通过View获取Activity. public static @NonNull Activity getActivity(View view) { Context conte 阅读全文
摘要:
if (Ativity.this == null || Ativity.this.isFinishing()) { return;}if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { if (Ativity.this.isDestroyed()) { return; }} ... 阅读全文
摘要:
I found out that the problem was because my view was a sub-activity inside a tab.To correctly override the transitions I've overridden the onPause met 阅读全文
摘要:
例如界面A传值到界面B1. 界面A注意事项: (1) Intent put 不同类型的参数同名参数 最后一个将会覆盖前面的参数; (一个参数名字只能对应一个参数值,多个参数最后都会被最后一个参数覆盖)2.界面B注意事项: (2)Intent get 不同类型的参数,只有当界面A put了该类... 阅读全文
摘要:
1. 从activity A 中跳另一个activity B 要求: (1)当前 A 中有fragment (2) 从A 跳到B 界面 后返回数据给 A的fragment 解决方案: 方案1:在A 界面中用当前 fragment 调用startActivityForResult(inte... 阅读全文
摘要:
出现如下情况ADB server didn't ACK* failed to start daemon *解决办法:方法一:(1)查看任务管理器,关闭所有adb.exe,或者运行->cmd,在命令窗口输入adb kill-server(2)重启eclipse即可方法二, :如果方法一不行,就查看下自... 阅读全文
摘要:
在drawable目录下创建一个repeat_bg.xml: src是引用图片的名称然后在布局的xml文件中可以这样引用: 阅读全文
摘要:
可能是程序中有死循环或无限递归导致 阅读全文
摘要:
ListView.addHeaderView(View, null, true) 第三个参数是代表是否可以像item一样点击,如果它的值(1)为false,headerDividersEnabled 为 true 会显示headerDividers 但是颜色不随divider 变化.(2)为true... 阅读全文