aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/logtrackable_activity.xml
diff options
context:
space:
mode:
Diffstat (limited to 'main/res/layout/logtrackable_activity.xml')
-rw-r--r--main/res/layout/logtrackable_activity.xml132
1 files changed, 57 insertions, 75 deletions
diff --git a/main/res/layout/logtrackable_activity.xml b/main/res/layout/logtrackable_activity.xml
index 7791409..2a901ea 100644
--- a/main/res/layout/logtrackable_activity.xml
+++ b/main/res/layout/logtrackable_activity.xml
@@ -1,95 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="?background_color"
- android:orientation="vertical" >
+ android:orientation="vertical"
+ android:padding="4dip" >
- <LinearLayout style="@style/action_bar" >
-
- <include layout="@layout/actionbar_title" />
-
- <include layout="@layout/actionbar_progress" />
- </LinearLayout>
-
- <ScrollView
+ <LinearLayout
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:padding="4dip" >
+ android:layout_height="wrap_content"
+ android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:orientation="vertical" >
+ android:orientation="horizontal" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
+ <Button
+ android:id="@+id/type"
+ style="@style/button_full"
+ android:layout_width="0dip"
+ android:layout_weight="1" />
- <Button
- android:id="@+id/type"
- style="@style/button_full"
- android:layout_width="0dip"
- android:layout_weight="1" />
+ <Button
+ android:id="@+id/date"
+ style="@style/button_full"
+ android:layout_width="0dip"
+ android:layout_weight="1" />
+ </LinearLayout>
- <Button
- android:id="@+id/date"
- style="@style/button_full"
- android:layout_width="0dip"
- android:layout_weight="1" />
- </LinearLayout>
+ <EditText
+ android:id="@+id/tracking"
+ style="@style/edittext_full"
+ android:hint="@string/trackable_code"
+ android:inputType="textCapCharacters" />
- <EditText
- android:id="@+id/tracking"
- style="@style/edittext_full"
- android:hint="@string/trackable_code"
- android:inputType="textCapCharacters" />
+ <EditText
+ android:id="@+id/log"
+ style="@style/edittext_full"
+ android:hint="@string/log_new_log_text"
+ android:inputType="textMultiLine|textCapSentences"
+ android:lines="5"
+ android:maxLength="4000"
+ android:singleLine="false" />
- <EditText
- android:id="@+id/log"
- style="@style/edittext_full"
- android:hint="@string/log_new_log_text"
- android:inputType="textMultiLine|textCapSentences"
- android:lines="5"
- android:maxLength="4000"
- android:singleLine="false" />
+ <LinearLayout
+ android:id="@+id/tweet_box"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="5dip"
+ android:layout_marginLeft="10dip"
+ android:layout_marginRight="10dip"
+ android:orientation="horizontal"
+ android:visibility="gone" >
- <LinearLayout
- android:id="@+id/tweet_box"
- android:layout_width="fill_parent"
+ <CheckBox
+ android:id="@+id/tweet"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginBottom="5dip"
- android:layout_marginLeft="10dip"
- android:layout_marginRight="10dip"
- android:orientation="horizontal"
- android:visibility="gone" >
-
- <CheckBox
- android:id="@+id/tweet"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="left"
- android:gravity="center"
- android:padding="2sp" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:gravity="left"
- android:paddingRight="3dip"
- android:text="@string/visit_tweet"
- android:textColor="?text_color"
- android:textSize="14sp" />
- </LinearLayout>
+ android:layout_gravity="left"
+ android:gravity="center"
+ android:padding="2sp" />
- <Button
- android:id="@+id/post"
- style="@style/button_full"
- android:text="@string/log_post" />
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:gravity="left"
+ android:paddingRight="3dip"
+ android:text="@string/visit_tweet"
+ android:textColor="?text_color"
+ android:textSize="14sp" />
</LinearLayout>
- </ScrollView>
+ </LinearLayout>
-</LinearLayout> \ No newline at end of file
+</ScrollView> \ No newline at end of file