2016-11-06 23:52:57 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-12-04 13:20:37 +01:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/save_as_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/file_path_label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/path"
|
|
|
|
android:textSize="@dimen/details_text_size"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/file_path"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="@dimen/activity_margin"
|
|
|
|
android:layout_marginLeft="@dimen/activity_margin"
|
|
|
|
android:paddingRight="@dimen/small_padding"
|
|
|
|
android:paddingTop="@dimen/small_padding"/>
|
2016-11-06 23:52:57 +01:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/file_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="@dimen/activity_margin"
|
|
|
|
android:singleLine="true"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|