Android代码的几点小技巧

时间:2021-08-09 05:31:08
 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配置内联访问器可以达到兼有两者的效果,既有好的代码结构,也有快速的访问速度。(没玩过这个内联访问器)