summaryrefslogtreecommitdiffstats
path: root/res/layout/live_wallpaper_base.xml
diff options
context:
space:
mode:
authorAdam Lesinski <adamlesinski@google.com>2010-12-06 15:42:03 -0800
committerAdam Lesinski <adamlesinski@google.com>2010-12-06 17:25:39 -0800
commitd6bb51406fa63d93bf634b64e9f115e49a9c9c29 (patch)
treecbfb62607f9795300d6ea5e3b1f65492faa8891e /res/layout/live_wallpaper_base.xml
parent0ab0466df1edeb03700069a9989bf1ee30ce8fdf (diff)
downloadandroid_packages_wallpapers_LivePicker-d6bb51406fa63d93bf634b64e9f115e49a9c9c29.tar.gz
android_packages_wallpapers_LivePicker-d6bb51406fa63d93bf634b64e9f115e49a9c9c29.tar.bz2
android_packages_wallpapers_LivePicker-d6bb51406fa63d93bf634b64e9f115e49a9c9c29.zip
Fixed bug in orientation change
-The Fragment was missing an empty public constructor b/3257935 -Restructured some of the logic determining whether to show a dialog or an embedded view Change-Id: I42295ef88cd800b775ea6970c59c34cb46ca17d5
Diffstat (limited to 'res/layout/live_wallpaper_base.xml')
-rw-r--r--res/layout/live_wallpaper_base.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/res/layout/live_wallpaper_base.xml b/res/layout/live_wallpaper_base.xml
index 6803901..41cbdf1 100644
--- a/res/layout/live_wallpaper_base.xml
+++ b/res/layout/live_wallpaper_base.xml
@@ -15,6 +15,10 @@
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/live_wallpaper_base_view"
android:layout_width="match_parent"
- android:layout_height="match_parent"/>
+ android:layout_height="match_parent">
+ <fragment class="com.android.wallpaper.livepicker.LiveWallpaperListActivity$WallpaperDialog"
+ android:id="@+id/live_wallpaper_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
+</FrameLayout>