2011-09-05 12:08:48 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="@string/file_with_name_already_exist"
|
|
|
|
android:id="@+id/DuplicateFileName"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_marginTop="3dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="@string/filename_input"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/FileNameEdit"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="bottom|center"
|
|
|
|
android:layout_marginTop="5dp">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="125dp"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-08 00:28:39 +01:00
|
|
|
android:text="@string/shared_string_cancel"
|
2015-12-01 09:52:25 +01:00
|
|
|
android:id="@+id/Cancel"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="125dp"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-08 16:25:55 +01:00
|
|
|
android:text="@string/shared_string_save"
|
2015-12-01 09:52:25 +01:00
|
|
|
android:id="@+id/Save"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
</LinearLayout>
|
2011-09-05 12:08:48 +02:00
|
|
|
</LinearLayout>
|