diff options
Diffstat (limited to 'res/layout/settings_main.xml')
-rw-r--r-- | res/layout/settings_main.xml | 91 |
1 files changed, 42 insertions, 49 deletions
diff --git a/res/layout/settings_main.xml b/res/layout/settings_main.xml index 8b98794..db732dc 100644 --- a/res/layout/settings_main.xml +++ b/res/layout/settings_main.xml @@ -17,65 +17,58 @@ */ --> -<android.support.v4.widget.DrawerLayout - xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/drawer_layout" - android:layout_width="match_parent" - android:layout_height="match_parent"> - - <LinearLayout +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_height="match_parent" android:layout_width="match_parent"> - <android.preference.PreferenceFrameLayout android:id="@+id/prefs" - android:layout_width="match_parent" + <LinearLayout + android:orientation="vertical" android:layout_height="match_parent" - android:layout_weight="1" - /> + android:layout_width="match_parent"> - <RelativeLayout android:id="@+id/button_bar" - android:layout_height="wrap_content" - android:layout_width="match_parent" - android:layout_weight="0" - android:visibility="gone"> + <android.preference.PreferenceFrameLayout + android:id="@+id/prefs" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_weight="1" + /> + </LinearLayout> - <Button android:id="@+id/back_button" + <RelativeLayout android:id="@+id/button_bar" + android:layout_height="wrap_content" + android:layout_width="match_parent" + android:layout_weight="0" + android:visibility="gone"> + + <Button android:id="@+id/back_button" + android:layout_width="150dip" + android:layout_height="wrap_content" + android:layout_margin="5dip" + android:layout_alignParentStart="true" + android:text="@*android:string/back_button_label" + /> + <LinearLayout + android:orientation="horizontal" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentEnd="true"> + + <Button android:id="@+id/skip_button" android:layout_width="150dip" android:layout_height="wrap_content" android:layout_margin="5dip" - android:layout_alignParentStart="true" - android:text="@*android:string/back_button_label" + android:text="@*android:string/skip_button_label" + android:visibility="gone" /> - <LinearLayout - android:orientation="horizontal" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentEnd="true"> - - <Button android:id="@+id/skip_button" - android:layout_width="150dip" - android:layout_height="wrap_content" - android:layout_margin="5dip" - android:text="@*android:string/skip_button_label" - android:visibility="gone" - /> - <Button android:id="@+id/next_button" - android:layout_width="150dip" - android:layout_height="wrap_content" - android:layout_margin="5dip" - android:text="@*android:string/next_button_label" - /> - </LinearLayout> - </RelativeLayout> - - </LinearLayout> - - <ListView android:id="@+id/headers_drawer" - android:layout_width="300dp" - android:layout_height="match_parent" - android:layout_gravity="start" - android:background="@color/background_drawer"/> + <Button android:id="@+id/next_button" + android:layout_width="150dip" + android:layout_height="wrap_content" + android:layout_margin="5dip" + android:text="@*android:string/next_button_label" + /> + </LinearLayout> + </RelativeLayout> -</android.support.v4.widget.DrawerLayout> +</LinearLayout> |