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"
|
2011-04-17 06:03:32 +00:00
|
|
|
android:background="@drawable/bgtitanium"
|
|
|
|
android:id="@+id/viewMain"
|
|
|
|
>
|
2010-02-08 20:39:42 +00:00
|
|
|
|
|
|
|
<RelativeLayout android:id="@+id/layoutHeaderMain"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:background="#A0909090">
|
|
|
|
<ImageView android:id="@+id/radioModeImage"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-19 22:34:15 +00:00
|
|
|
android:layout_marginTop="0px"
|
2010-02-08 20:39:42 +00:00
|
|
|
android:layout_marginRight="3px"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_toRightOf="@+id/radioModeLabel"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:src="@drawable/tor25"
|
|
|
|
/>
|
|
|
|
<TextView android:id="@+id/radioModeText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-19 22:34:15 +00:00
|
|
|
android:text="@string/powered_by"
|
|
|
|
android:layout_marginTop="9px"
|
2010-02-08 20:39:42 +00:00
|
|
|
android:layout_marginRight="0px"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_toLeftOf="@+id/radioModeImage"
|
2010-07-19 22:34:15 +00:00
|
|
|
android:textColor="#333333" />
|
2010-02-08 20:39:42 +00:00
|
|
|
</RelativeLayout>
|
2009-11-28 15:41:28 +00:00
|
|
|
|
|
|
|
<ScrollView android:id="@+id/mainview"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
2010-02-08 20:39:42 +00:00
|
|
|
<TableLayout android:id="@+id/mainLayout"
|
2009-11-28 15:41:28 +00:00
|
|
|
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
|
2010-02-08 20:39:42 +00:00
|
|
|
android:id="@+id/imgStatus"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/toroff"/>
|
2009-11-28 15:41:28 +00:00
|
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<TextView android:id="@+id/lblStatus"
|
2010-07-19 22:34:15 +00:00
|
|
|
android:text="@string/press_to_start"
|
2009-11-28 15:41:28 +00:00
|
|
|
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"
|
2011-04-15 16:37:58 +00:00
|
|
|
android:width="330px"
|
2011-04-17 06:03:32 +00:00
|
|
|
android:height="125px"
|
2010-02-08 20:39:42 +00:00
|
|
|
android:textColor="#ffffff"
|
|
|
|
/>
|
2009-11-28 15:41:28 +00:00
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
</TableLayout>
|
2010-02-08 20:39:42 +00:00
|
|
|
</ScrollView>
|
2009-11-28 15:41:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2009-10-21 23:17:45 +00:00
|
|
|
|