summaryrefslogtreecommitdiff
path: root/res/layout/browser.xml
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/layout/browser.xml
parent6ef031b66061629dc814c786521cb182b628f346 (diff)
Gave FileBrowser a layout file and a header
Diffstat (limited to 'res/layout/browser.xml')
-rw-r--r--res/layout/browser.xml17
1 files changed, 17 insertions, 0 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