Day of week now displays correctly in event_view. Removes old add event
[unical.git] / res / layout / add_event.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical" >
6
7 <TabHost
8 android:id="@android:id/tabhost"
9 android:layout_width="match_parent"
10 android:layout_height="match_parent" >
11
12 <LinearLayout
13 android:layout_width="match_parent"
14 android:layout_height="match_parent"
15 android:orientation="vertical" >
16
17 <TabWidget
18 android:id="@android:id/tabs"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content" >
21 </TabWidget>
22
23 <FrameLayout
24 android:id="@android:id/tabcontent"
25 android:layout_width="match_parent"
26 android:layout_height="match_parent" >
27
28 <LinearLayout
29 android:id="@+id/tab1"
30 android:layout_width="match_parent"
31 android:layout_height="match_parent"
32 android:orientation="vertical" >
33 </LinearLayout>
34
35 <LinearLayout
36 android:id="@+id/tab2"
37 android:layout_width="match_parent"
38 android:layout_height="match_parent"
39 android:orientation="vertical" >
40 </LinearLayout>
41
42 <LinearLayout
43 android:id="@+id/tab3"
44 android:layout_width="match_parent"
45 android:layout_height="match_parent"
46 android:orientation="vertical" >
47 </LinearLayout>
48 </FrameLayout>
49 </LinearLayout>
50 </TabHost>
51
52 </LinearLayout>
This page took 0.023843 seconds and 4 git commands to generate.