summaryrefslogtreecommitdiff
path: root/res/layout/fragment_status.xml
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2014-01-11 18:44:50 +0100
committerYves Fischer <yvesf-git@xapek.org>2014-01-11 18:48:48 +0100
commit002a2c3e1d0f091a48f8cc3eb7dce519870debaf (patch)
tree64140ef20603bcf66dc33b8f2c5416d006547cb1 /res/layout/fragment_status.xml
downloadandiodine-002a2c3e1d0f091a48f8cc3eb7dce519870debaf.tar.gz
andiodine-002a2c3e1d0f091a48f8cc3eb7dce519870debaf.zip
import code
Diffstat (limited to 'res/layout/fragment_status.xml')
-rw-r--r--res/layout/fragment_status.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/res/layout/fragment_status.xml b/res/layout/fragment_status.xml
new file mode 100644
index 0000000..d6030e3
--- /dev/null
+++ b/res/layout/fragment_status.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ >
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Message Placeholder"
+ android:id="@+id/status_message"
+ style="@android:style/TextAppearance.DeviceDefault.Large"
+ tools:ignore="HardcodedText"/>
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ >
+
+
+ <ScrollView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:autoText="true"
+ android:id="@+id/status_scrollview"
+ android:layout_weight="1">
+
+ <TextView
+ android:layout_height="match_parent"
+ android:layout_width="match_parent"
+ android:id="@+id/status_logmessages"/>
+ </ScrollView>
+
+ <Button
+ android:drawableLeft="@drawable/cancel"
+ android:text="Cancel"
+ android:id="@+id/status_cancel"
+ android:layout_width="match_parent"
+ android:layout_height="50dp"
+ />
+
+ </LinearLayout>
+</LinearLayout> \ No newline at end of file