summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorSantiago Etchebehere <santie@google.com>2019-11-07 14:24:56 -0800
committerSantiago Etchebehere <santie@google.com>2019-11-07 14:24:56 -0800
commit312c245a25fdc83b3da4747a1958b92fb3df1fde (patch)
tree85bad50b9ca4fe6b429e3fe3cde953f2e748e118 /AndroidManifest.xml
parent55822c0f54c3412e07ee07611f343bc79e36ddf0 (diff)
downloadplatform_packages_apps_WallpaperPicker2-312c245a25fdc83b3da4747a1958b92fb3df1fde.tar.gz
platform_packages_apps_WallpaperPicker2-312c245a25fdc83b3da4747a1958b92fb3df1fde.tar.bz2
platform_packages_apps_WallpaperPicker2-312c245a25fdc83b3da4747a1958b92fb3df1fde.zip
Disallow split-screen for WallpaperPicker
There's no good use case for split-screen when PreviewActivity is already full screen and it causes other issues. Fixes: 141968921 Change-Id: Ia79bde4c0428f15e41a1d95087d6ad3c6bcb5fad
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-xAndroidManifest.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 1415226..6d04f6f 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -37,7 +37,7 @@
<activity android:name="com.android.wallpaper.picker.TopLevelPickerActivity"
android:label="@string/app_name"
android:theme="@style/WallpaperTheme"
- android:resizeableActivity="true">
+ android:resizeableActivity="false">
<intent-filter>
<action android:name="android.intent.action.SET_WALLPAPER"/>
<category android:name="android.intent.category.DEFAULT"/>
@@ -57,7 +57,7 @@
<activity android:name="com.android.wallpaper.picker.individual.IndividualPickerActivity"
android:label="@string/app_name"
android:theme="@style/WallpaperTheme"
- android:resizeableActivity="true"
+ android:resizeableActivity="false"
android:parentActivityName="com.android.wallpaper.picker.TopLevelPickerActivity">
</activity>