64 lines
3.0 KiB
XML
64 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="@drawable/background">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/relativeLayout1"
|
|
android:layout_gravity="center_horizontal">
|
|
<ImageView
|
|
android:src="@drawable/tor"
|
|
android:id="@+id/gibber_image"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:paddingLeft="20px" android:paddingRight="20px" >
|
|
</ImageView>
|
|
<TextView android:textSize="10pt"
|
|
android:layout_toRightOf="@id/gibber_image"
|
|
android:layout_alignParentTop="true"
|
|
android:gravity="center_vertical"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/WizardTextTitle"
|
|
android:layout_width="wrap_content"
|
|
android:fadingEdge="vertical"
|
|
android:text="TITLE"
|
|
android:textColor="#00ff00"
|
|
android:singleLine="true"
|
|
|
|
|
|
|
|
android:layout_centerInParent="true"
|
|
android:padding="20px">
|
|
</TextView>
|
|
</RelativeLayout>
|
|
<TableLayout android:id="@+id/TableLayout01" android:stretchColumns="*" android:layout_height="fill_parent" android:layout_width="wrap_content">
|
|
|
|
<TableRow android:id="@+id/TableRow01" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="fill_parent">
|
|
|
|
|
|
<ScrollView android:id="@+id/helpscrollview"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_span="3">
|
|
|
|
<TextView android:text="this is sample text this is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample textthis is sample text" android:padding="6px" android:background="#222222" android:textColor="#ffffff" android:id="@+id/WizardTextBody" android:textSize="8pt" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
|
|
|
|
</ScrollView>
|
|
|
|
</TableRow>
|
|
<TableRow android:id="@+id/TableRow01" android:textColor="#00ff00" android:layout_width="fill_parent" android:layout_height="30px">
|
|
<Button android:text="button1" android:id="@+id/btnWizard1" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
|
|
<Button android:text="button2" android:id="@+id/btnWizard2" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
|
|
</TableRow>
|
|
</TableLayout>
|
|
</LinearLayout>
|
|
|
|
|