Android代码的几点小技巧
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android代码的几点小技巧相关的知识,希望对你有一定的参考价值。
1)View的状态保存与恢复
dispatchRestoreInstanceState
onRestoreInstanceState
onSaveInstanceState
2)Service的前台服务使用
startForeground(NOTIFICATION_ID, mNotification)
stopForeground(true)
3)Avoid internal getters/setters 避免内部的get/set访问器
不使用JIT时,直接访问成员变量比使用get方法能够提升3倍速度。而使用JIT时,直接访问成员变量与使用本地变量一样高效廉价,其访问速度能够提升7倍。使用ProGuard配置内联访问器可以达到兼有两者的效果,既有好的代码结构,也有快速的访问速度。(没玩过这个内联访问器)
dispatchRestoreInstanceState
onRestoreInstanceState
onSaveInstanceState
2)Service的前台服务使用
startForeground(NOTIFICATION_ID, mNotification)
stopForeground(true)
3)Avoid internal getters/setters 避免内部的get/set访问器
不使用JIT时,直接访问成员变量比使用get方法能够提升3倍速度。而使用JIT时,直接访问成员变量与使用本地变量一样高效廉价,其访问速度能够提升7倍。使用ProGuard配置内联访问器可以达到兼有两者的效果,既有好的代码结构,也有快速的访问速度。(没玩过这个内联访问器)
以上是关于Android代码的几点小技巧的主要内容,如果未能解决你的问题,请参考以下文章