diff options
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/browser.xml | 17 | ||||
-rw-r--r-- | res/layout/filerow.xml | 3 |
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>
|