Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: mobile/android/base/resources/layout/abb_start_pane.xml

Issue 6296160390086656: Issue 2491 - Fix design elements in onboarding slides (Closed)
Patch Set: Renamed button background. Created May 22, 2015, 12:04 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mobile/android/base/resources/layout/abb_start_pane.xml
diff --git a/mobile/android/base/resources/layout/abb_start_pane.xml b/mobile/android/base/resources/layout/abb_start_pane.xml
index 0cc2abc3a3596578efc5cad909968ae630b606f4..544fbae9562c0f50204bd344d93ab0a50286ba82 100644
--- a/mobile/android/base/resources/layout/abb_start_pane.xml
+++ b/mobile/android/base/resources/layout/abb_start_pane.xml
@@ -3,61 +3,30 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
- android:background="#c9d3dd" >
- <!-- Upper logo and title -->
- <LinearLayout android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/abb_side_margin"
- android:layout_marginLeft="@dimen/abb_side_margin"
- android:layout_marginRight="@dimen/abb_side_margin"
- android:padding="@dimen/abb_frp_padding"
- android:orientation="vertical"
- android:background="#ffffff" >
- <ImageView android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:src="@drawable/icon"
- android:scaleType="centerInside" />
- <TextView android:id="@+id/abb_app_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:layout_marginTop="4dip"
- android:textSize="20sp" />
- </LinearLayout>
+ android:background="#ffffff"
+ android:padding="10dp" >
<!-- Main content view, filled dynamically -->
<LinearLayout android:id="@+id/abb_main_content"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
- android:layout_margin="@dimen/abb_side_margin"
- android:padding="@dimen/abb_frp_padding"
+ android:paddingLeft="10dp"
+ android:paddingRight="10dp"
+ android:layout_margin="0dp"
android:orientation="vertical"
android:background="#ffffff" >
</LinearLayout>
<!-- Confirmation button -->
- <RelativeLayout android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/abb_side_margin"
- android:layout_marginLeft="@dimen/abb_side_margin"
- android:layout_marginRight="@dimen/abb_side_margin"
- android:background="#127ACA" >
- <TextView android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="right"
- android:text="⇨ "
- android:background="@android:color/transparent"
- android:textColor="#71afdf"
- android:layout_centerInParent="true"
- android:textSize="30sp" />
- <Button android:id="@+id/abb_frp_button"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center"
- android:text="filler"
- android:background="@android:color/transparent"
- android:textColor="#f8f8f8"
- android:layout_centerInParent="true" />
- </RelativeLayout>
+ <Button android:id="@+id/abb_frp_button"
+ android:tag="ttf_opensans_semibold"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center"
+ android:text="filler"
+ android:background="@drawable/abb_start_pane_button"
+ android:drawableRight="@drawable/abb_right_arrow"
+ android:textColor="#f8f8f8"
+ android:textSize="24sp"
+ android:layout_centerInParent="true" />
</LinearLayout>

Powered by Google App Engine
This is Rietveld