diff options
| author | Jacob Nordfalk <jacob.nordfalk@gmail.com> | 2012-01-31 22:23:46 +0100 |
|---|---|---|
| committer | Jacob Nordfalk <jacob.nordfalk@gmail.com> | 2012-02-01 00:01:48 +0100 |
| commit | 8e61185918b9b4ef8de6ecffb0d77afaeb336abd (patch) | |
| tree | dc1a810f88a50dac622f5b0910102592b08823e3 /core/java/android/app/Application.java | |
| parent | 9781870491f4f33403f8d518879a88c20180d7cb (diff) | |
Improved documentation (clarify on issue 8727)
Signed-off-by: Jacob Nordfalk <jacob.nordfalk@gmail.com>
Change-Id: I2bea866542c95eb0558004a64c9a2fd74aeff35b
Diffstat (limited to 'core/java/android/app/Application.java')
| -rw-r--r-- | core/java/android/app/Application.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/core/java/android/app/Application.java b/core/java/android/app/Application.java index dd9ea267c174..3a67cecfe560 100644 --- a/core/java/android/app/Application.java +++ b/core/java/android/app/Application.java @@ -64,11 +64,12 @@ public class Application extends ContextWrapper implements ComponentCallbacks2 { } /** - * Called when the application is starting, before any other application - * objects have been created. Implementations should be as quick as - * possible (for example using lazy initialization of state) since the time - * spent in this function directly impacts the performance of starting the - * first activity, service, or receiver in a process. + * Called when the application is starting, before any activity, service, + * or receiver objects (excluding content providers) have been created. + * Implementations should be as quick as possible (for example using + * lazy initialization of state) since the time spent in this function + * directly impacts the performance of starting the first activity, + * service, or receiver in a process. * If you override this method, be sure to call super.onCreate(). */ public void onCreate() { |
