diff options
author | Scott Main <smain@google.com> | 2012-06-26 22:13:18 -0700 |
---|---|---|
committer | Scott Main <smain@google.com> | 2012-06-26 22:17:10 -0700 |
commit | 3fd21b562c7c0a60839f06751c59bf853d6377b6 (patch) | |
tree | 08dafb30e4f0f521d17f169d733dfc1cfb45e4e7 /docs/html | |
parent | cdb3f9c45b97a64380f044c6b8c1863c1ba58b6a (diff) | |
download | frameworks_base-3fd21b562c7c0a60839f06751c59bf853d6377b6.zip frameworks_base-3fd21b562c7c0a60839f06751c59bf853d6377b6.tar.gz frameworks_base-3fd21b562c7c0a60839f06751c59bf853d6377b6.tar.bz2 |
docs: add info about live wallpaper picker
Change-Id: Idc11d9f091117dec53b19b352d24e97dab2c4bd0
Diffstat (limited to 'docs/html')
-rw-r--r-- | docs/html/about/versions/android-4.1.jd | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/docs/html/about/versions/android-4.1.jd b/docs/html/about/versions/android-4.1.jd index ef2caa3..675dc99 100644 --- a/docs/html/about/versions/android-4.1.jd +++ b/docs/html/about/versions/android-4.1.jd @@ -112,14 +112,18 @@ the content provider does. It's useful when you are interacting with content pro app.</p> -<h3 id="LiveWallpapers">Live Wallpapers</h3> -<p>New intent protocol to directly launch the live wallpaper preview activity, so the user can -select a specified live wallpaper as the new wallpaper. This allows live wallpapers to provide an -easy path for the user to select the wallpaper from its own UI, without forcing the user to leave -the app and navigate through the Home wallpaper picker.</p> +<h3 id="LiveWallpapers">Live Wallpapers</h3> +<p>New intent protocol to directly launch the live wallpaper preview activity so you can help + users easily select your live wallpaper without forcing them to leave +your app and navigate through the Home wallpaper picker.</p> +<p>To launch the live wallpaper picker, call {@link android.content.Context#startActivity + startActivity()} with an {@link android.content.Intent} using +{@link android.app.WallpaperManager#ACTION_CHANGE_LIVE_WALLPAPER} and an extra +that specifies your live wallpaper {@link android.content.ComponentName} as a string in {@link +android.app.WallpaperManager#EXTRA_LIVE_WALLPAPER_COMPONENT}.</p> |