summaryrefslogtreecommitdiffstats
path: root/res/layout/choose_lock_pattern_tutorial.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/choose_lock_pattern_tutorial.xml')
-rw-r--r--res/layout/choose_lock_pattern_tutorial.xml26
1 files changed, 15 insertions, 11 deletions
diff --git a/res/layout/choose_lock_pattern_tutorial.xml b/res/layout/choose_lock_pattern_tutorial.xml
index 1c3e90bf0..47af50b36 100644
--- a/res/layout/choose_lock_pattern_tutorial.xml
+++ b/res/layout/choose_lock_pattern_tutorial.xml
@@ -52,30 +52,34 @@
</ScrollView>
- <RelativeLayout
- android:layout_height="wrap_content"
- android:layout_width="fill_parent">
-
+ <LinearLayout style="@android:style/ButtonBar"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+
<Button android:id="@+id/skip_button"
- android:layout_width="150dip"
android:layout_height="wrap_content"
+ android:layout_width="0dip"
android:layout_weight="1"
- android:layout_margin="5dip"
- android:layout_alignParentLeft="true"
android:text="@string/skip_button_label"
/>
+ <View
+ android:visibility="invisible"
+ android:layout_height="0dip"
+ android:layout_width="0dip"
+ android:layout_weight="1"
+ />
+
<Button android:id="@+id/next_button"
- android:layout_width="150dip"
android:layout_height="wrap_content"
+ android:layout_width="0dip"
android:layout_weight="1"
- android:layout_margin="5dip"
- android:layout_alignParentRight="true"
android:drawableRight="@drawable/ic_btn_next"
android:drawablePadding="3dip"
android:text="@string/next_button_label"
/>
- </RelativeLayout>
+ </LinearLayout>
</LinearLayout >