diff options
author | Scott Main <smain@google.com> | 2011-02-03 18:46:45 -0800 |
---|---|---|
committer | Scott Main <smain@google.com> | 2011-02-07 21:03:04 -0800 |
commit | 9bf45a00752f84037dcf1aba79e76542b4d4ed22 (patch) | |
tree | 74d54faeb6a3cf2e0583d0dfad66c7059d433d96 /docs/html/guide/appendix/faq | |
parent | ae91b5ac7d18e4e461fa42709f51da73d29c403a (diff) | |
download | frameworks_base-9bf45a00752f84037dcf1aba79e76542b4d4ed22.zip frameworks_base-9bf45a00752f84037dcf1aba79e76542b4d4ed22.tar.gz frameworks_base-9bf45a00752f84037dcf1aba79e76542b4d4ed22.tar.bz2 |
Finish the app fundamentals rewrite by updating the side nav and resolving links in the dev guide
Also move the app fundamentals document back to fundamentals.jd
TODO: resolve links in the javadocs
Change-Id: Ia3c81a83bf7fe75f7942fd41bfb1d626ee72d5d9
Diffstat (limited to 'docs/html/guide/appendix/faq')
-rw-r--r-- | docs/html/guide/appendix/faq/commontasks.jd | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/html/guide/appendix/faq/commontasks.jd b/docs/html/guide/appendix/faq/commontasks.jd index b3dc236..cf9cbd3 100644 --- a/docs/html/guide/appendix/faq/commontasks.jd +++ b/docs/html/guide/appendix/faq/commontasks.jd @@ -124,8 +124,9 @@ It is not necessary to put external JARs in the assets folder. <h2>Implementing Activity Callbacks</h2> <p>Android calls a number of callbacks to let you draw your screen, store data before pausing, and refresh data after closing. You must implement at least some of - these methods. See <a href="{@docRoot}guide/topics/fundamentals.html#lcycles">Lifecycles</a> - discussion in Application Fundamentals to learn when and in what order these methods + these methods. See the <a +href="{@docRoot}guide/topics/fundamentals/activites.html#Lifecycle">Activities</a> + document to learn when and in what order these methods are called. Here are some of the standard types of screen classes that Android provides:</p> <ul> <li>{@link android.app.Activity android.app.Activity} - This is a standard screen, @@ -150,9 +151,9 @@ It is not necessary to put external JARs in the assets folder. <p>When you open a new screen you can decide whether to make it transparent or floating, or full-screen. The choice of new screen affects the event sequence of events in the old screen (if the new screen obscures the old screen, a different - series of events is called in the old screen). See <a - href="{@docRoot}guide/topics/fundamentals.html#lcycles">Lifecycles</a> discussion - in Application Fundamentals for details. </p> + series of events is called in the old screen). See the <a + href="{@docRoot}guide/topics/fundamentals/activities.html#Lifecycle">Activities</a> document for +details. </p> <p>Transparent or floating windows are implemented in three standard ways: </p> <ul> @@ -309,7 +310,8 @@ loopback interface. the application is finalized. See the topics for {@link android.app.Activity#onSaveInstanceState} and {@link android.app.Activity#onCreate} for examples of storing and retrieving state.</p> -<p>Read more about the lifecycle of an application in <a href="{@docRoot}guide/topics/fundamentals.html">Application Fundamentals</a>.</p> +<p>Read more about the lifecycle of an activity in <a +href="{@docRoot}guide/topics/fundamentals/activities.html">Activities</a> document.</p> <h3>Storing and Retrieving Larger or More Complex Persistent Data<a name="storingandretrieving" id="storingandretrieving"></a></h3> <p>Your application can store files or complex collection objects, and reserve them for private use by itself or other activities in the application, or it can expose |