summaryrefslogtreecommitdiff
path: root/vdrmanager/res
diff options
context:
space:
mode:
Diffstat (limited to 'vdrmanager/res')
-rw-r--r--vdrmanager/res/layout/timer_detail.xml47
1 files changed, 28 insertions, 19 deletions
diff --git a/vdrmanager/res/layout/timer_detail.xml b/vdrmanager/res/layout/timer_detail.xml
index 0aa5da7..1374e68 100644
--- a/vdrmanager/res/layout/timer_detail.xml
+++ b/vdrmanager/res/layout/timer_detail.xml
@@ -3,6 +3,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
+ android:paddingLeft="10.0dip" android:paddingRight="10.0dip"
android:orientation="vertical">
<ScrollView
@@ -18,23 +19,18 @@
android:orientation="vertical">
<TextView
- android:id="@+id/timer_detail_channel_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
+ android:paddingLeft="4.0dip" android:paddingBottom="2.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="2.0dip"
android:text="@string/timer_detail_channel_title"/>
<EditText
android:id="@+id/timer_detail_channel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:editable="false"/>
+ android:enabled="false"
+ />
<TextView
- android:id="@+id/timer_detail_title_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
+ android:paddingLeft="4.0dip" android:paddingBottom="2.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="2.0dip"
android:text="@string/timer_detail_title_title"/>
<EditText
@@ -43,9 +39,7 @@
android:layout_height="wrap_content"/>
<TextView
- android:id="@+id/timer_detail_start_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ android:paddingLeft="4.0dip" android:paddingBottom="2.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="2.0dip"
android:text="@string/timer_detail_start_title"/>
<LinearLayout
@@ -68,10 +62,8 @@
</LinearLayout>
<TextView
- android:id="@+id/timer_detail_end_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/timer_detail_end_title"/>
+ android:paddingLeft="4.0dip" android:paddingBottom="2.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="2.0dip"
+ android:text="@string/timer_detail_end_title"/>
<EditText
android:id="@+id/timer_detail_end"
@@ -89,11 +81,28 @@
</ScrollView>
+<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" >
+
+ <Button
+ android:id="@+id/timer_details_cancel"
+ android:layout_width="0dip" android:layout_height="fill_parent"
+ android:layout_weight="1"
+ android:text="@android:string/cancel"/>
+
+ <Button
+ android:id="@+id/timer_details_modify"
+ android:layout_width="0dip" android:layout_height="fill_parent"
+ android:layout_weight="1"
+ android:visibility="gone"
+ android:text="@string/timer_details_save_title"/>
+
+
<Button
android:id="@+id/timer_details_save"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
+ android:layout_width="0dip" android:layout_height="fill_parent"
+ android:layout_weight="1"
android:text="@string/timer_details_create_title"/>
+
+ </LinearLayout>
</LinearLayout>