diff options
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 217b95e..b78b3df 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -11,7 +11,8 @@ <uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" /> <application android:label="@string/app_name"> <activity android:name=".PackageInstallerActivity" - android:configChanges="orientation|keyboardHidden"> + android:configChanges="orientation|keyboardHidden" + android:theme="@style/TallTitleBarTheme"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> @@ -21,10 +22,12 @@ </intent-filter> </activity> <activity android:name=".InstallAppProgress" - android:configChanges="orientation|keyboardHidden"> + android:configChanges="orientation|keyboardHidden" + android:theme="@style/TallTitleBarTheme"> </activity> <activity android:name=".UninstallerActivity" - android:configChanges="orientation|keyboardHidden"> + android:configChanges="orientation|keyboardHidden" + android:theme="@style/TallTitleBarTheme"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.DELETE" /> @@ -33,7 +36,8 @@ </intent-filter> </activity> <activity android:name=".UninstallAppProgress" - android:configChanges="orientation|keyboardHidden"> + android:configChanges="orientation|keyboardHidden" + android:theme="@style/TallTitleBarTheme"> </activity> </application> </manifest> |