From f4ba5c8456d360bed12d665bf6c8647bfebb874c Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 15 May 2012 17:29:33 -0700 Subject: [PATCH] Mention that ProGuard inlines accessors. Bug: http://code.google.com/p/android/issues/detail?id=27775 Change-Id: I6d8eaf41e3b7de30a9ef0cd03e3d6a9eec92c063 --- docs/html/guide/practices/design/performance.jd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/html/guide/practices/design/performance.jd b/docs/html/guide/practices/design/performance.jd index c41f971ab46ce..dd9b55407edd9 100644 --- a/docs/html/guide/practices/design/performance.jd +++ b/docs/html/guide/practices/design/performance.jd @@ -180,6 +180,9 @@ accessing a local), direct field access is about 7x faster than invoking a trivial getter. This is true in Froyo, but will improve in the future when the JIT inlines getter methods.

+

Note that if you're using ProGuard, you can have the best +of both worlds because ProGuard can inline accessors for you.

+

Use Static Final For Constants