60 lines
2.4 KiB
XML
60 lines
2.4 KiB
XML
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/saveFileDialog"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:orientation="vertical" >
|
||
|
<ListView
|
||
|
android:id="@+id/fileList"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:padding="10dp" />
|
||
|
<LinearLayout
|
||
|
android:id="@+id/fileLinearLayout2"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:padding="10dp" >
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/fileTextView1"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="10dp"
|
||
|
android:text="@string/enterFileName"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||
|
<EditText
|
||
|
android:id="@+id/fileName"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:contentDescription="@string/enterFileName"
|
||
|
android:inputType="text"
|
||
|
android:padding="10dp" />
|
||
|
<LinearLayout
|
||
|
android:id="@+id/fileLinearLayout3"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal" >
|
||
|
<Button
|
||
|
android:id="@+id/fileSaveLoad"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:padding="10dp"
|
||
|
android:text="@string/saveButtonText" />
|
||
|
<Button
|
||
|
android:id="@+id/fileCancel"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:padding="10dp"
|
||
|
android:text="@string/cancelButtonText" />
|
||
|
<Button
|
||
|
android:id="@+id/newFolder"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:text="@string/newFolderButtonText" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|