diff options
Diffstat (limited to 'app/src/main/res/layout/browser.xml')
-rw-r--r-- | app/src/main/res/layout/browser.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app/src/main/res/layout/browser.xml b/app/src/main/res/layout/browser.xml new file mode 100644 index 0000000..4ba2fe4 --- /dev/null +++ b/app/src/main/res/layout/browser.xml @@ -0,0 +1,37 @@ +<?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" > + + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" > + <ImageButton + android:id="@+id/upDirButton" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:src="@drawable/up_arrow" /> + + <EditText + android:id="@+id/directoryname" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="0.5" + android:inputType="textUri" /> + + <ImageButton + android:id="@+id/goDirButton" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@android:drawable/ic_media_play" /> + + </LinearLayout> + <ListView + android:id="@+id/filelist" + android:layout_width="match_parent" + android:layout_height="wrap_content" > + </ListView> +</LinearLayout>
\ No newline at end of file |