2009-10-21 23:17:45 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2010-07-23 11:10:00 +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/bgtitanium">
|
|
|
|
|
|
|
|
<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="0px"
|
|
|
|
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"
|
|
|
|
android:text="@string/powered_by"
|
|
|
|
android:layout_marginTop="9px"
|
|
|
|
android:layout_marginRight="0px"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_toLeftOf="@+id/radioModeImage"
|
|
|
|
android:textColor="#333333" />
|
|
|
|
</RelativeLayout>
|
2010-09-09 20:39:52 +00:00
|
|
|
|
2010-02-08 20:39:42 +00:00
|
|
|
<ScrollView android:orientation="vertical"
|
2010-09-09 20:39:52 +00:00
|
|
|
android:layout_height="wrap_content"
|
2010-02-08 20:39:42 +00:00
|
|
|
android:layout_width="fill_parent" android:id="@+id/logScrollView"
|
2010-07-19 22:34:15 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2009-11-28 15:41:28 +00:00
|
|
|
|
2010-02-08 20:39:42 +00:00
|
|
|
<TextView android:id="@+id/messageLog"
|
2010-07-23 11:10:00 +00:00
|
|
|
android:layout_height="wrap_content"
|
2010-07-19 22:34:15 +00:00
|
|
|
android:layout_width="fill_parent"
|
2010-02-08 20:39:42 +00:00
|
|
|
android:layout_x="2px"
|
2010-07-19 22:34:15 +00:00
|
|
|
android:layout_y="2px"
|
2010-09-23 19:47:25 +00:00
|
|
|
android:textSize="14px"
|
2010-07-23 11:10:00 +00:00
|
|
|
android:background="#A0222222"
|
2010-02-08 20:39:42 +00:00
|
|
|
/>
|
2010-07-19 22:34:15 +00:00
|
|
|
|
2010-09-09 20:39:52 +00:00
|
|
|
</ScrollView>
|
|
|
|
|
2010-07-23 11:10:00 +00:00
|
|
|
</LinearLayout>
|
2010-07-19 22:34:15 +00:00
|
|
|
|