Merge "Fix FATAL EXCEPTION on SmsStorageLowWarningActivity"

am: 05f6de16d3

Change-Id: I0c039776d6a7c71d91dfc391fcb050d425bace4a
This commit is contained in:
Taesu Lee
2019-08-13 22:10:26 -07:00
committed by android-build-merger
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -430,7 +430,7 @@
</activity> </activity>
<activity android:name=".ui.SmsStorageLowWarningActivity" <activity android:name=".ui.SmsStorageLowWarningActivity"
android:theme="@style/Invisible" android:theme="@style/Translucent"
android:configChanges="orientation|screenSize|keyboardHidden" /> android:configChanges="orientation|screenSize|keyboardHidden" />
<activity android:name=".ui.appsettings.ApnSettingsActivity" <activity android:name=".ui.appsettings.ApnSettingsActivity"
+9
View File
@@ -76,6 +76,15 @@
<item name="android:windowNoDisplay">true</item> <item name="android:windowNoDisplay">true</item>
</style> </style>
<style name="Translucent" parent="BugleBaseTheme">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowAnimationStyle">@null</item>
<item name="android:windowDisablePreview">true</item>
</style>
<style name="BugleActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid"> <style name="BugleActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid">
<item name="height">@dimen/action_bar_height</item> <item name="height">@dimen/action_bar_height</item>
<item name="displayOptions">showTitle</item> <item name="displayOptions">showTitle</item>