(Android) Add resource XML files for filebrowser
This commit is contained in:
parent
bc36993f8b
commit
080a7ea96f
|
@ -0,0 +1,24 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_height="wrap_content" android:orientation="vertical" android:layout_width="wrap_content">
|
||||||
|
|
||||||
|
<Button android:id="@+id/fileChooserSubmit"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignParentBottom="true"
|
||||||
|
android:text="Submit">
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<ListView android:id="@+id/fileChooserView"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:scrollbars="vertical"
|
||||||
|
android:fastScrollEnabled="true"
|
||||||
|
android:padding="2dp"
|
||||||
|
android:layout_above="@id/fileChooserSubmit">
|
||||||
|
</ListView>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_height="wrap_content" android:orientation="vertical" android:layout_width="fill_parent">
|
||||||
|
<TextView android:text="@+id/TextView01"
|
||||||
|
android:id="@+id/TextView01"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_marginTop="5dip"
|
||||||
|
android:layout_marginLeft="5dip">
|
||||||
|
</TextView>
|
||||||
|
<TextView android:text="@+id/TextView02"
|
||||||
|
android:id="@+id/TextView02"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginLeft="10dip">
|
||||||
|
</TextView>
|
||||||
|
</LinearLayout>
|
Loading…
Reference in New Issue