
Android
文章平均质量分 62
xie592030956
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android Studio 4.1以上模板Dome
因使用MVPArms 里面有用到 MVPArms-Module-Template 模板代码,但是在Android Studio 4.1以上不支持那种方式了,so,摸索几天弄了个支持新版的插件版 arms-template-plugin ,此文应该可以给想自定义模板代码的一个基础说明吧 1.使用JetBrains IntelliJ 插件模板 打开 [intellij-platform-plugin-template](https://github.com/JetBrains/intellij-platform原创 2021-04-22 16:57:59 · 642 阅读 · 3 评论 -
Android 打开URL
打开链接 Intent it = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com")); it.setClassName("com.android.browser", "com.android.browser.BrowserActivity"); getContext().st转载 2015-01-15 14:53:22 · 737 阅读 · 0 评论