2016-06-09 09:46:46 +00:00
|
|
|
<?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
|
2016-12-20 07:55:28 +00:00
|
|
|
android:id="@+id/scanRomsDialog_selectDir"
|
2016-06-09 09:46:46 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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
|
2016-12-20 07:55:28 +00:00
|
|
|
android:id="@+id/ScanRecursively"
|
2016-06-09 09:46:46 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-12-20 07:55:28 +00:00
|
|
|
android:padding="10dp" />
|
2016-06-09 09:46:46 +00:00
|
|
|
<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>
|