summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/topics/appwidgets
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2011-02-03 18:46:45 -0800
committerScott Main <smain@google.com>2011-02-07 21:03:04 -0800
commit9bf45a00752f84037dcf1aba79e76542b4d4ed22 (patch)
tree74d54faeb6a3cf2e0583d0dfad66c7059d433d96 /docs/html/guide/topics/appwidgets
parentae91b5ac7d18e4e461fa42709f51da73d29c403a (diff)
downloadframeworks_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/topics/appwidgets')
-rw-r--r--docs/html/guide/topics/appwidgets/index.jd8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/html/guide/topics/appwidgets/index.jd b/docs/html/guide/topics/appwidgets/index.jd
index 3de5627..89306a2 100644
--- a/docs/html/guide/topics/appwidgets/index.jd
+++ b/docs/html/guide/topics/appwidgets/index.jd
@@ -333,10 +333,10 @@ of the App Widget is added one hour after the first one, then they will both be
on the period defined by the first one and the second update period will be ignored
(they'll both be updated every two hours, not every hour).</p>
-<p class="note"><strong>Note:</strong> Because the AppWidgetProvider is a BroadcastReceiver,
-your process is not guaranteed to keep running after the callback methods return (see
-<a href="{@docRoot}guide/topics/fundamentals.html#broadlife">Application Fundamentals &gt;
-Broadcast Receiver Lifecycle</a> for more information). If your App Widget setup process can take several
+<p class="note"><strong>Note:</strong> Because {@link android.appwidget.AppWidgetProvider} is an
+extension of {@link android.content.BroadcastReceiver}, your process is not guaranteed to keep
+running after the callback methods return (see {@link android.content.BroadcastReceiver} for
+information about the broadcast lifecycle). If your App Widget setup process can take several
seconds (perhaps while performing web requests) and you require that your process continues,
consider starting a {@link android.app.Service}
in the {@link android.appwidget.AppWidgetProvider#onUpdate(Context,AppWidgetManager,int[])