52 lines
No EOL
1.8 KiB
XML
52 lines
No EOL
1.8 KiB
XML
<?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="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:id="@+id/osmo_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="4dp"
|
|
android:src="@drawable/mon_osmo_conn_small" />
|
|
|
|
<Switch
|
|
android:id="@+id/enable_service"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="false"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/osmo_start_service" />
|
|
</LinearLayout>
|
|
|
|
<Switch
|
|
android:id="@+id/enable_tracker"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="false"
|
|
android:layout_marginLeft="3dp"
|
|
android:layout_marginTop="3dp"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/osmo_enable_tracker" />
|
|
|
|
<TextView
|
|
android:id="@+id/motd"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dip"
|
|
android:gravity="center"
|
|
android:textSize="18sp" />
|
|
|
|
</LinearLayout> |