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

Commit ca4a84d4 authored by Sumedh Sen's avatar Sumedh Sen Committed by Android (Google) Code Review
Browse files

Merge "Rearrange PIA themes." into main

parents d00deadc dd314dee
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -45,11 +45,9 @@

        <activity android:name=".v2.ui.InstallLaunch"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:theme="@style/Theme.AlertDialogActivity"
            android:exported="false"/>

        <activity android:name=".InstallStart"
                android:theme="@style/Theme.AlertDialogActivity"
                android:exported="true"
                android:excludeFromRecents="true">
            <intent-filter android:priority="1">
@@ -79,14 +77,12 @@
                android:exported="false" />

        <activity android:name=".DeleteStagedFileOnResult"
            android:theme="@style/Theme.AlertDialogActivity.NoActionBar"
            android:exported="false" />

        <activity android:name=".PackageInstallerActivity"
                android:exported="false" />

        <activity android:name=".InstallInstalling"
                android:theme="@style/Theme.AlertDialogActivity.NoAnimation"
                android:exported="false" />

        <receiver android:name=".common.InstallEventReceiver"
@@ -98,16 +94,13 @@
        </receiver>

        <activity android:name=".InstallSuccess"
                android:theme="@style/Theme.AlertDialogActivity.NoAnimation"
                android:exported="false" />

        <activity android:name=".InstallFailed"
                android:theme="@style/Theme.AlertDialogActivity.NoAnimation"
                android:exported="false" />

        <activity android:name=".UninstallerActivity"
                android:configChanges="orientation|keyboardHidden|screenSize"
                android:theme="@style/Theme.AlertDialogActivity.NoActionBar"
                android:excludeFromRecents="true"
                android:noHistory="true"
                android:exported="true">
@@ -121,7 +114,6 @@

        <activity android:name=".v2.ui.UninstallLaunch"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:theme="@style/Theme.AlertDialogActivity.NoActionBar"
            android:excludeFromRecents="true"
            android:noHistory="true"
            android:exported="false">
@@ -144,7 +136,6 @@
        </receiver>

        <activity android:name=".UninstallUninstalling"
            android:theme="@style/Theme.AlertDialogActivity.NoActionBar"
            android:excludeFromRecents="true"
            android:exported="false" />

@@ -171,7 +162,6 @@

        <activity android:name=".UnarchiveActivity"
                  android:configChanges="orientation|keyboardHidden|screenSize"
                  android:theme="@style/Theme.AlertDialogActivity.NoActionBar"
                  android:excludeFromRecents="true"
                  android:noHistory="true"
                  android:exported="true">
@@ -183,7 +173,6 @@

        <activity android:name=".UnarchiveErrorActivity"
                  android:configChanges="orientation|keyboardHidden|screenSize"
                  android:theme="@style/Theme.AlertDialogActivity.NoActionBar"
                  android:excludeFromRecents="true"
                  android:noHistory="true"
                  android:exported="true">
+1 −8
Original line number Diff line number Diff line
@@ -17,19 +17,12 @@

<resources>

    <style name="Theme.AlertDialogActivity.NoAnimation"
           parent="@style/Theme.AlertDialogActivity.NoActionBar">
        <item name="android:windowAnimationStyle">@null</item>
    </style>

    <style name="Theme.AlertDialogActivity"
        parent="@android:style/Theme.DeviceDefault.Light.Dialog.Alert">
        <item name="alertDialogStyle">@style/AlertDialog</item>
    </style>

    <style name="Theme.AlertDialogActivity.NoActionBar">
        <item name="android:windowActionBar">false</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowAnimationStyle">@null</item>
    </style>

</resources>