Android笔记(五)(代码规范)

阿里巴巴Android开发手册:https://yq.aliyun.com/attachment/download/?id=5261​​
Android 资源文件命名与使用
1. 【推荐】 color 资源使用#AARRGGBB 格式
2. 【推荐】大分辨率图片(单维度超过 1000)建议统一放在 xxhdpi 目录下管理,否则将导致占用内存成倍数增加。
Android 基本组件
1. 【强制】Activity 间通过隐式 Intent 的跳转,在发出 Intent 之前必须通过 resolveActivity 检查,避免找不到合适的调用组件,造成 ActivityNotFoundException 的异常。
public void viewUrl(String url, String mimeType) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(url), mimeType);
if (get

Android笔记(五)(代码规范)最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/20954.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>