mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2025-02-22 13:23:11 +01:00
34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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">
|
|
|
|
<TextView
|
|
android:id="@+id/file_path"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<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"/>
|
|
|
|
<TextView
|
|
android:id="@+id/file_extension_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/extension"/>
|
|
|
|
<EditText
|
|
android:id="@+id/file_extension"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/activity_margin"
|
|
android:singleLine="true"/>
|
|
|
|
</LinearLayout>
|