2016-03-05 13:59:32 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-12-19 23:47:18 +01:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/rename_file_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/activity_margin">
|
2016-03-05 13:59:32 +01:00
|
|
|
|
2016-12-25 15:17:15 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
2016-06-23 11:34:21 +02:00
|
|
|
android:id="@+id/file_path"
|
|
|
|
android:layout_width="wrap_content"
|
2016-06-23 11:43:32 +02:00
|
|
|
android:layout_height="wrap_content"/>
|
2016-03-05 13:59:32 +01:00
|
|
|
|
2016-12-25 15:17:15 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyEditText
|
2016-03-05 13:59:32 +01:00
|
|
|
android:id="@+id/file_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-26 16:48:40 +01:00
|
|
|
android:layout_marginBottom="@dimen/activity_margin"
|
2016-12-25 15:17:15 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:textCursorDrawable="@null"/>
|
2016-03-05 13:59:32 +01:00
|
|
|
|
2016-12-25 15:17:15 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
2016-11-06 18:45:33 +01:00
|
|
|
android:id="@+id/file_extension_label"
|
2016-03-05 13:59:32 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/extension"/>
|
|
|
|
|
2016-12-25 15:17:15 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyEditText
|
2016-11-06 18:45:33 +01:00
|
|
|
android:id="@+id/file_extension"
|
2016-03-05 13:59:32 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-26 16:48:40 +01:00
|
|
|
android:layout_marginBottom="@dimen/activity_margin"
|
2016-12-25 15:17:15 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:textCursorDrawable="@null"/>
|
2016-03-05 13:59:32 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|