好久没有写android的小样例了,因为前几天写了一篇关于Intent.Action的文章(http://blog.csdn.net/ljphhj/article/details/38796739)。有朋友私信问我关于ACTION_SCREEN_ON和ACTION_SCREEN_OFF还有ACTIO ...
分类:
其他好文 时间:
2017-08-11 10:43:40
阅读次数:
238
安卓工作室 android studio 汉化后,报错。 设置界面打不开。 Android studio has been sinified and reported wrong.The setup interface cannot be opened. 安卓工作室 android studio 版 ...
分类:
移动开发 时间:
2017-08-08 17:55:52
阅读次数:
320
使用Intent实现打电话的动作,我们须要在 AnroidMainfest.xml中增加通话权限,打开这个文件,在application节点的前面增加以下内容 <uses-permission android:name="android.permission.CALL_PHONE" /> 以下,使用 ...
分类:
移动开发 时间:
2017-08-08 12:39:16
阅读次数:
145
Android系统的4个组件最终还剩一种组件了BroadcastReceiver,这个组件是全局监听器,能够监听系统全局的广播消息,能够方便的实现系统中不同组件之间的通信 BroadcastReceiver有自己的进程,系统级监听器,仅仅要存在与之匹配的Intent被广播出来,BroadcastRe ...
分类:
移动开发 时间:
2017-08-07 11:50:11
阅读次数:
251
废话不说,上代码 代码说明 关于在代码中安装 APK 文件,在 Android N 以后,为了安卓系统为了安全考虑,不能直接访问软件,需要使用 fileprovider 机制来访问、打开 APK 文件。 上面的 if 语句,就是区分软件运行平台,来对 intent 设置不同的属性。 适配 Andro ...
分类:
移动开发 时间:
2017-08-06 15:06:10
阅读次数:
174
字符串处理绝对是任何一门语言的重点。 str.partition(sep) Split the string at the first occurrence of sep, and return a 3-tuple containing the part before the separator, ...
分类:
编程语言 时间:
2017-08-06 14:02:02
阅读次数:
193
一、循环key <foreach collection="map.keys" item="key" separator="and"> ${key} = #{key} </foreach> 二、循环values <foreach collection="map.values" item="value" ...
分类:
其他好文 时间:
2017-08-05 22:45:02
阅读次数:
137