summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2009-11-08 13:51:50 -0800
committerRomain Guy <romainguy@android.com>2009-11-08 15:30:12 -0800
commit2f26cced2d4257c4fb106939447d901ae971b4d1 (patch)
treeb78f744b31f42fc53274593d2a5883a2258d50b8 /AndroidManifest.xml
parent7e2a10d904ce52bde6e887b9c257709729f39613 (diff)
downloadandroid_packages_wallpapers_LivePicker-2f26cced2d4257c4fb106939447d901ae971b4d1.tar.gz
android_packages_wallpapers_LivePicker-2f26cced2d4257c4fb106939447d901ae971b4d1.tar.bz2
android_packages_wallpapers_LivePicker-2f26cced2d4257c4fb106939447d901ae971b4d1.zip
New, safer, live wallpaper picker.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml15
1 files changed, 11 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 9fd1077..c5d8528 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -30,10 +30,11 @@
android:label="@string/application_name"
android:icon="@drawable/ic_launcher_appwidget">
- <activity android:name="LiveWallpaperPickActivity"
- android:icon="@drawable/ic_launcher_appwidget"
- android:label="@string/live_wallpaper_picker_title"
- android:theme="@android:style/Theme.Wallpaper.NoTitleBar">
+ <activity android:name="LiveWallpaperListActivity"
+ android:icon="@drawable/ic_launcher_appwidget"
+ android:label="@string/live_wallpaper_picker_title"
+ android:theme="@android:style/Theme.NoTitleBar"
+ android:screenOrientation="nosensor">
<intent-filter>
<action android:name="android.service.wallpaper.LIVE_WALLPAPER_CHOOSER" />
<action android:name="android.intent.action.SET_WALLPAPER" />
@@ -41,6 +42,12 @@
</intent-filter>
</activity>
+ <activity android:name="LiveWallpaperPreview"
+ android:icon="@drawable/ic_launcher_appwidget"
+ android:label="@string/live_wallpaper_preview_title"
+ android:theme="@android:style/Theme.Wallpaper.NoTitleBar"
+ android:screenOrientation="nosensor" />
+
</application>
</manifest>