Files
chrometophone/android/res/layout/setup_complete.xml
burke.davey d00b0bb259 UI tweaks
2010-08-03 06:43:58 +00:00

57 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_gradient">
<ImageView
android:id="@+id/header"
android:background="@drawable/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/footer"
android:layout_below="@+id/header"
android:layout_margin="5dip">
<TextView
android:id="@+id/setup_complete_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000000"/>
</ScrollView>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/footer"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#FF707070">
<Button
android:id="@+id/back"
android:text="@string/back"
android:layout_marginTop="5px"
android:layout_weight="1"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_btn_back"/>
<Button
android:id="@+id/finish"
android:text="@string/finish"
android:layout_marginTop="5px"
android:layout_weight="1"
android:layout_width="0dip"
android:layout_height="wrap_content"/>
</LinearLayout>
</RelativeLayout>