2014-07-16 19:20:18 +02:00
|
|
|
<?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">
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1">
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/eo_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<Button
|
|
|
|
android:text="@android:string/ok"
|
|
|
|
android:id="@+id/eo_ok"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1">
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
android:text="@string/cancel"
|
|
|
|
android:id="@+id/eo_cancel"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1">
|
|
|
|
</Button>
|
2014-07-16 19:46:43 +02:00
|
|
|
<Button
|
|
|
|
android:text="@string/reset"
|
|
|
|
android:id="@+id/eo_reset"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1">
|
|
|
|
</Button>
|
|
|
|
</LinearLayout>
|
2014-07-16 19:20:18 +02:00
|
|
|
</LinearLayout>
|