2011-02-24 10:35:19 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-08-05 06:00:25 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:gravity="right" >
|
2012-08-05 04:02:05 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2012-08-05 06:00:25 +02:00
|
|
|
android:id="@+id/linearLayout1"
|
|
|
|
android:layout_width="fill_parent"
|
2012-08-05 04:02:05 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
2012-08-05 06:00:25 +02:00
|
|
|
android:layout_width="fill_parent"
|
2012-08-05 04:02:05 +02:00
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/settingsCheck"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checked="true"
|
2012-08-30 05:20:32 +02:00
|
|
|
android:text="@string/settings" />
|
2012-08-05 04:02:05 +02:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/dataCheck"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checked="true"
|
2012-08-30 05:20:32 +02:00
|
|
|
android:text="@string/data" />
|
2012-08-05 04:02:05 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2012-08-05 06:00:25 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:background="#FFFFFFFF" />
|
|
|
|
|
2012-08-05 04:02:05 +02:00
|
|
|
<LinearLayout
|
2012-08-05 06:00:25 +02:00
|
|
|
android:layout_width="fill_parent"
|
2012-08-05 04:02:05 +02:00
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/object_list"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-08-05 23:25:54 +02:00
|
|
|
android:layout_weight="2"
|
|
|
|
android:choiceMode="singleChoice"
|
|
|
|
android:drawSelectorOnTop="true" />
|
2012-08-05 06:00:25 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="1dip"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="#FFFFFFFF" />
|
2012-08-05 04:02:05 +02:00
|
|
|
|
2012-08-30 05:20:32 +02:00
|
|
|
<RelativeLayout
|
2012-08-05 06:00:25 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical" >
|
2012-08-05 04:02:05 +02:00
|
|
|
|
2012-08-05 06:00:25 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/object_information"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-08-30 05:20:32 +02:00
|
|
|
android:layout_alignParentTop="true"
|
2012-08-05 06:00:25 +02:00
|
|
|
android:layout_marginLeft="12dp"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2012-08-30 05:20:32 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/editButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:text="@string/edit" />
|
2012-08-06 01:17:26 +02:00
|
|
|
|
2012-08-30 05:20:32 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/object_load_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_toLeftOf="@+id/editButton"
|
|
|
|
android:text="@string/load" />
|
2012-08-06 01:17:26 +02:00
|
|
|
|
2012-08-30 05:20:32 +02:00
|
|
|
</RelativeLayout>
|
2012-08-05 06:00:25 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2012-08-05 04:02:05 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2011-03-20 12:09:06 +01:00
|
|
|
</RelativeLayout>
|