52 lines
1.8 KiB
XML
52 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/text1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/scanRomsDialog_selectDir"
|
|
android:padding="10dp"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<ListView
|
|
android:id="@+id/listView1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical" >
|
|
</ListView>
|
|
|
|
<CheckBox
|
|
android:id="@+id/checkBox1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp"
|
|
android:text="@string/scanRomsDialog_scanRecursively" />
|
|
<RelativeLayout
|
|
android:id="@+id/linearLayoutButtons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="10dp" >
|
|
|
|
<Button
|
|
android:id="@+id/buttonCancel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toLeftOf="@+id/buttonOk"
|
|
android:layout_toStartOf="@+id/buttonOk"
|
|
android:text="@android:string/cancel" />
|
|
|
|
<Button
|
|
android:id="@+id/buttonOk"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:text="@android:string/ok" />
|
|
</RelativeLayout>
|
|
</LinearLayout> |