Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8b06c13 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Use correct parent for "BackgroundOnly" theme

Also rename it to "BackgroundOnlyTheme" for consistency

Bug: 5216724
Change-Id: I2e4917f37d610d1ec5ccb5652dbd44d326c11943
parent 053908f6
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -597,7 +597,7 @@
        <!-- vCard related -->
        <activity android:name=".vcard.ImportVCardActivity"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:theme="@style/BackgroundOnly">
            android:theme="@style/BackgroundOnlyTheme">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <data android:mimeType="text/directory" />
@@ -610,7 +610,7 @@

        <activity android:name=".vcard.NfcImportVCardActivity"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:theme="@style/BackgroundOnly">
            android:theme="@style/BackgroundOnlyTheme">
            <intent-filter>
                <action android:name="android.nfc.action.NDEF_DISCOVERED" />
                <data android:mimeType="text/vcard" />
@@ -621,13 +621,13 @@
        </activity>

        <activity android:name=".vcard.CancelActivity"
            android:theme="@style/BackgroundOnly" />
            android:theme="@style/BackgroundOnlyTheme" />

        <activity android:name=".vcard.SelectAccountActivity"
            android:theme="@style/BackgroundOnly" />
            android:theme="@style/BackgroundOnlyTheme" />

        <activity android:name=".vcard.ExportVCardActivity"
            android:theme="@style/BackgroundOnly" />
            android:theme="@style/BackgroundOnlyTheme" />

        <service
            android:name=".vcard.VCardService"
+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@
        <item name="android:layout_height">200dip</item>
    </style>

    <style name="BackgroundOnly" parent="@android:Theme.Holo.Light">
    <style name="BackgroundOnlyTheme" parent="@android:Theme.Holo.Light">
        <item name="android:windowBackground">@null</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowAnimationStyle">@null</item>
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@
        <item name="android:textColorSecondary">@color/secondary_text_color</item>
    </style>

    <style name="BackgroundOnly">
    <style name="BackgroundOnlyTheme" parent="@android:style/Theme.Holo.Light">
        <item name="android:windowBackground">@null</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowAnimationStyle">@null</item>