summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2013-02-01 01:02:20 +0000
committerJoe Robinson <joe@lc8n.com>2013-02-01 01:02:20 +0000
commitbffa5e5ea8a852bae02f724d9758edd54776b885 (patch)
treeb5524a48085fc78df45ee9434b64ea57e4df78fb /res
parent6ef031b66061629dc814c786521cb182b628f346 (diff)
Gave FileBrowser a layout file and a header
Diffstat (limited to 'res')
-rw-r--r--res/layout/browser.xml17
-rw-r--r--res/layout/filerow.xml3
2 files changed, 18 insertions, 2 deletions
diff --git a/res/layout/browser.xml b/res/layout/browser.xml
new file mode 100644
index 0000000..e4edd98
--- /dev/null
+++ b/res/layout/browser.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical" >
+ <TextView
+ android:id="@+id/directoryname"
+ android:layout_width="fill_parent"
+ android:layout_height="50dp"
+ android:background="#CCCCCC" />
+ <ListView
+ android:id="@+id/filelist"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+ </ListView>
+
+</LinearLayout> \ No newline at end of file
diff --git a/res/layout/filerow.xml b/res/layout/filerow.xml
index 410c666..2780514 100644
--- a/res/layout/filerow.xml
+++ b/res/layout/filerow.xml
@@ -2,6 +2,5 @@
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
- android:layout_height="30sp"
- android:typeface="monospace">
+ android:layout_height="30sp">
</TextView>