2010-07-19 22:34:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2011-11-13 15:39:08 +00:00
|
|
|
android:background="@drawable/bgtitanium" android:orientation="vertical">
|
2010-07-19 22:34:15 +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"
|
|
|
|
android:layout_marginTop="3px"
|
|
|
|
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"
|
2012-02-27 11:50:35 +00:00
|
|
|
android:text="@string/powered_by"
|
2010-07-19 22:34:15 +00:00
|
|
|
android:layout_marginTop="8px"
|
|
|
|
android:layout_marginRight="0px"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_toLeftOf="@+id/radioModeImage"
|
|
|
|
android:textColor="#cccccc" />
|
|
|
|
</RelativeLayout>
|
2011-05-17 02:03:07 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgStatus"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_margin="5dip"
|
2011-11-13 15:39:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:src="@drawable/toroff" android:layout_weight=".5"/>
|
2011-05-17 02:03:07 +00:00
|
|
|
|
|
|
|
<TextView android:id="@+id/lblStatus"
|
|
|
|
android:text="@string/press_to_start"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:layout_width="wrap_content"
|
2011-11-13 15:39:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
2011-05-17 02:03:07 +00:00
|
|
|
android:textColor="#ffffff"
|
|
|
|
/>
|
2010-07-19 22:34:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|