1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:id="@+id/JournalViewLayout"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 android:background="@drawable/morphossbg"
7 android:orientation="vertical" >
9 xmlns:android="http://schemas.android.com/apk/res/android"
10 android:id="@+id/JournalViewBelowTitleLayout"
11 android:layout_width="fill_parent"
12 android:layout_height="fill_parent"
13 android:layout_weight="1"
14 android:orientation="horizontal" >
17 android:id="@+id/JournalViewColourBar"
18 android:layout_width="13sp"
19 android:layout_height="fill_parent"
20 android:background="#704080f0" />
21 <!-- Color bar stops -->
24 android:id="@+id/JournalViewContentArea"
25 android:layout_width="fill_parent"
26 android:layout_height="fill_parent"
27 android:layout_gravity="right"
28 android:isScrollContainer="true"
29 android:orientation="vertical" >
30 <!-- journal name thingy -->
32 android:id="@+id/JournalName"
33 android:layout_width="fill_parent"
34 android:layout_height="wrap_content"
35 android:paddingBottom="10sp"
36 android:paddingLeft="10sp"
37 android:textSize="30sp" >
39 <!-- journal name thingy end -->
40 <!-- journal date thingy -->
42 android:id="@+id/JournalTimeContent"
43 android:layout_width="fill_parent"
44 android:layout_height="wrap_content"
45 android:paddingBottom="10sp"
46 android:paddingLeft="10sp"
47 android:textSize="20sp" >
49 <!-- journal date thingy end -->
50 <!-- scroll view of note thingy -->
52 android:layout_width="fill_parent"
53 android:layout_height="0dp"
54 android:layout_weight="1" >
56 android:id="@+id/JournalNotesContent"
57 android:layout_width="fill_parent"
58 android:layout_height="wrap_content"
59 android:paddingLeft="10sp"
60 android:textSize="20sp" >
63 <!-- scroll view of note thingy end -->
64 <!-- actual button -->
66 android:layout_width="fill_parent"
67 android:layout_height="wrap_content"
68 android:gravity="center"
69 android:paddingLeft="1sp"
70 android:paddingRight="1sp" >
72 android:layout_width="fill_parent"
73 android:layout_height="wrap_content"
74 android:background="@color/themed_button_colour" >
76 android:id="@+id/journal_edit_button"
77 style="@style/themed_bottom_button"
78 android:layout_width="fill_parent"
79 android:layout_height="wrap_content"
80 android:layout_gravity="center"
81 android:text="@string/Edit"
82 android:width="90sp" />
85 <!-- actual button stops -->