Debug logging changes.
[acal.git] / res / layout / todo_list_view.xml
blob9d714d99f2d68fa7d208ed2ea52f06eae96c4fb1
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3         android:layout_width="fill_parent"
4         android:layout_height="wrap_content"
5         android:background="@drawable/morphossbg"
6         android:orientation="vertical" >
7         <RelativeLayout
8                 android:layout_width="fill_parent"
9                 android:layout_height="fill_parent"
10                 android:layout_weight="1" >
11                 <TextView
12                         android:id="@+id/todo_list_title"
13                         style="@style/general_title_bar"
14                         android:layout_width="fill_parent"
15                         android:layout_height="wrap_content"
16                         android:gravity="center"
17                         android:text="@string/Tasks"
18                         android:tileMode="repeat" />
19                 <ListView
20                         android:id="@+id/todo_list"
21                         android:layout_width="fill_parent"
22                         android:layout_height="fill_parent"
23                         android:layout_below="@id/todo_list_title"
24                         android:verticalSpacing="2dp" >
25                 </ListView>
26         </RelativeLayout>
27         <LinearLayout
28                 android:id="@+id/button_layout"
29                 android:layout_width="fill_parent"
30                 android:layout_height="36sp"
31                 android:background="@color/bottom_bg"
32                 android:gravity="bottom" >
33                 <LinearLayout
34                         android:layout_width="fill_parent"
35                         android:layout_height="fill_parent"
36                         android:layout_weight="1"
37                         android:gravity="center"
38                         android:paddingLeft="1sp"
39                         android:paddingRight="1sp" >
40                         <LinearLayout
41                                 android:layout_width="fill_parent"
42                                 android:layout_height="wrap_content"
43                                 android:background="@color/themed_button_colour" >
44                                 <Button
45                                         android:id="@+id/todo_due_button"
46                                         style="@style/themed_bottom_button"
47                                         android:layout_width="fill_parent"
48                                         android:layout_height="wrap_content"
49                                         android:gravity="center"
50                                         android:text="@string/Due"
51                                         android:width="70dp" />
52                         </LinearLayout>
53                 </LinearLayout>
54                 <LinearLayout
55                         android:layout_width="fill_parent"
56                         android:layout_height="fill_parent"
57                         android:layout_weight="1"
58                         android:gravity="center"
59                         android:paddingLeft="1sp"
60                         android:paddingRight="1sp" >
61                         <LinearLayout
62                                 android:layout_width="fill_parent"
63                                 android:layout_height="wrap_content"
64                                 android:background="@color/themed_button_colour" >
65                                 <Button
66                                         android:id="@+id/todo_all_button"
67                                         style="@style/themed_bottom_button"
68                                         android:layout_width="fill_parent"
69                                         android:layout_height="wrap_content"
70                                         android:gravity="center"
71                                         android:includeFontPadding="true"
72                                         android:padding="0sp"
73                                         android:text="@string/All"
74                                         android:width="70dp" />
75                         </LinearLayout>
76                 </LinearLayout>
77                 <LinearLayout
78                         android:layout_width="fill_parent"
79                         android:layout_height="fill_parent"
80                         android:layout_weight="1"
81                         android:gravity="center"
82                         android:paddingLeft="1sp"
83                         android:paddingRight="1sp" >
84                         <LinearLayout
85                                 android:layout_width="fill_parent"
86                                 android:layout_height="wrap_content"
87                                 android:background="@color/themed_button_colour" >
88                                 <Button
89                                         android:id="@+id/todo_add_button"
90                                         style="@style/themed_add_button"
91                                         android:layout_width="fill_parent"
92                                         android:layout_height="wrap_content"
93                                         android:layout_gravity="bottom|center_horizontal"
94                                         android:text="@string/plus"
95                                         android:width="70dp" />
96                         </LinearLayout>
97                 </LinearLayout>
98         </LinearLayout>
99 </LinearLayout>