
android
屹斩星辰
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android Service总结
Android Service总结 startService和bindService开启服务时,他们与activity之间的关系。 1、startService开启服务以后,与activity就没有关联,不受影响,独立运行。 2、bindService开启服务以后,与activity存在关联,退出activity时必须调用unbindService方法,否则会报ServiceConnection泄...原创 2019-04-24 11:42:01 · 132 阅读 · 0 评论 -
Intent隐式调用的一些用例
打电话 Intent intent1 = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + "13212312313")); 进网页 Intent intent1 = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.baidu.com")); 选择音频软件 Intent intent1...原创 2019-04-24 11:49:19 · 390 阅读 · 0 评论