2011-02-24 10:35:19 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-03-20 12:09:06 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2012-08-05 04:02:05 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/settingsCheck"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checked="true"
|
|
|
|
android:text="Settings" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/dataCheck"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checked="true"
|
|
|
|
android:text="Data" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/object_list"
|
|
|
|
android:layout_width="200dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1" >
|
|
|
|
</ListView>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/object_information"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text=""
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2011-03-20 12:09:06 +01:00
|
|
|
</RelativeLayout>
|