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

Commit 9d72db9d authored by cretin45's avatar cretin45
Browse files

SetupWizard: Reveal the default wallpaper on oobe finish

Change-Id: I68a256853f256af3464da7eba57a307a810d80cd
parent aaec6f7e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -77,6 +77,7 @@
                  android:label="@string/product_name"
                  android:launchMode="singleInstance"
                  android:excludeFromRecents="true"
                  android:uiOptions="none"
                  android:immersive="true">

            <intent-filter android:priority="9">

res/anim/fadein.xml

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
           android:interpolator="@android:anim/accelerate_interpolator"
           android:duration="1000"/>
</set>
 No newline at end of file

res/anim/fadeout.xml

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <alpha android:fromAlpha="1.0" android:toAlpha="0.0"
           android:interpolator="@android:anim/accelerate_interpolator"
           android:duration="1000"/>
</set>
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:paddingTop="@dimen/header_logo_margin_top"
                android:background="@color/primary"
                style="@style/Header">

    <ImageView
+2 −1
Original line number Diff line number Diff line
@@ -17,7 +17,8 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/button_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    android:layout_height="wrap_content"
    android:background="@color/button_bar_background">

    <Button
        style="@style/ButtonBar.Left"
Loading