2009-10-21 23:17:45 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-11-28 15:41:28 +00:00
|
|
|
<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/bgdarkdroid">
|
|
|
|
|
|
|
|
<ScrollView android:id="@+id/mainview"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
<TableLayout android:id="@+id/mainLayout"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content">
|
|
|
|
<TableRow android:id="@+id/startRow">
|
|
|
|
<TableLayout
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content">
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
2009-10-21 23:17:45 +00:00
|
|
|
android:id="@+id/imgStatus"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2009-11-28 15:41:28 +00:00
|
|
|
android:src="@drawable/toroff"/>
|
|
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<TextView android:id="@+id/lblStatus"
|
|
|
|
android:text=" \n "
|
|
|
|
android:paddingTop="15px"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2009-11-30 16:39:13 +00:00
|
|
|
android:gravity="center_horizontal"
|
2009-11-28 15:41:28 +00:00
|
|
|
android:textStyle="bold"
|
2009-11-30 16:39:13 +00:00
|
|
|
android:width="240px"
|
|
|
|
android:height="100px"
|
2009-11-28 15:41:28 +00:00
|
|
|
android:textColor="#ffffff" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
</TableLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2009-10-21 23:17:45 +00:00
|
|
|
|