summaryrefslogtreecommitdiffstats
path: root/res/layout/setup_finished_page.xml
diff options
context:
space:
mode:
authorcretin45 <cretin45@gmail.com>2015-01-21 15:55:03 -0800
committercretin45 <cretin45@gmail.com>2015-01-21 15:55:03 -0800
commit716ffa86dc68d72a6eb031a7ed52759b2298d4f3 (patch)
tree43523316775c317373411bd878ba07a60ccf2a3d /res/layout/setup_finished_page.xml
parent48ca24eb9b92c9b62970c3a12e963f497fc65bbc (diff)
downloadpackages_apps_SetupWizard-716ffa86dc68d72a6eb031a7ed52759b2298d4f3.tar.gz
packages_apps_SetupWizard-716ffa86dc68d72a6eb031a7ed52759b2298d4f3.tar.bz2
packages_apps_SetupWizard-716ffa86dc68d72a6eb031a7ed52759b2298d4f3.zip
SetupWizard: More refactor to match redlines
Change-Id: I74f422ba0c294d5e91aefb9356458c681cc53b37
Diffstat (limited to 'res/layout/setup_finished_page.xml')
-rw-r--r--res/layout/setup_finished_page.xml33
1 files changed, 24 insertions, 9 deletions
diff --git a/res/layout/setup_finished_page.xml b/res/layout/setup_finished_page.xml
index a641edf..44f0da2 100644
--- a/res/layout/setup_finished_page.xml
+++ b/res/layout/setup_finished_page.xml
@@ -17,16 +17,31 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/primary">
+ android:layout_height="match_parent">
- <ImageView
- android:id="@+id/brand_logo"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:src="@drawable/brand_finish"
- android:scaleType="centerInside"/>
+ <FrameLayout android:id="@+id/page"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1">
-</LinearLayout>
+ <LinearLayout android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="@color/primary">
+ <ImageView
+ android:id="@+id/brand_logo"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@drawable/brand_finish"
+ android:scaleType="centerInside"/>
+ </LinearLayout>
+
+ <ImageView android:id="@+id/reveal"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="@drawable/reveal"
+ android:visibility="invisible"/>
+ </FrameLayout>
+</LinearLayout> \ No newline at end of file