77 lines
2.4 KiB
XML
77 lines
2.4 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: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"
|
|
android:text="powered by The Tor Project "
|
|
android:layout_marginTop="8px"
|
|
android:layout_marginRight="0px"
|
|
android:gravity="right"
|
|
android:layout_toLeftOf="@+id/radioModeImage"
|
|
android:textColor="#cccccc" />
|
|
</RelativeLayout>
|
|
|
|
<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
|
|
android:id="@+id/imgStatus"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/toroff"/>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TextView android:id="@+id/lblStatus"
|
|
android:text="- Press to enable - "
|
|
android:layout_gravity="center_horizontal"
|
|
android:gravity="center_horizontal"
|
|
android:textStyle="bold"
|
|
android:width="240px"
|
|
android:height="50px"
|
|
android:textColor="#ffffff"
|
|
/>
|
|
</TableRow>
|
|
</TableLayout>
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|