|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + android:id="@+id/insert_filename_holder" |
| 4 | + android:layout_width="match_parent" |
| 5 | + android:layout_height="match_parent" |
| 6 | + android:orientation="vertical" |
| 7 | + android:padding="@dimen/activity_margin"> |
| 8 | + |
| 9 | + <com.simplemobiletools.commons.views.MyTextInputLayout |
| 10 | + android:id="@+id/insert_filename_hint" |
| 11 | + android:layout_width="match_parent" |
| 12 | + android:layout_height="wrap_content" |
| 13 | + android:layout_marginBottom="@dimen/activity_margin" |
| 14 | + android:hint="@string/filename"> |
| 15 | + |
| 16 | + <com.google.android.material.textfield.TextInputEditText |
| 17 | + android:id="@+id/insert_filename_title" |
| 18 | + android:layout_width="match_parent" |
| 19 | + android:layout_height="wrap_content" |
| 20 | + android:inputType="textCapSentences" |
| 21 | + android:singleLine="true" |
| 22 | + android:textCursorDrawable="@null" |
| 23 | + android:textSize="@dimen/bigger_text_size" /> |
| 24 | + |
| 25 | + </com.simplemobiletools.commons.views.MyTextInputLayout> |
| 26 | + |
| 27 | + <com.simplemobiletools.commons.views.MyTextInputLayout |
| 28 | + android:id="@+id/insert_filename_extension_hint" |
| 29 | + android:layout_width="match_parent" |
| 30 | + android:layout_height="wrap_content" |
| 31 | + android:layout_marginBottom="@dimen/activity_margin" |
| 32 | + android:hint="@string/extension"> |
| 33 | + |
| 34 | + <com.google.android.material.textfield.TextInputEditText |
| 35 | + android:id="@+id/insert_filename_extension_title" |
| 36 | + android:layout_width="match_parent" |
| 37 | + android:layout_height="wrap_content" |
| 38 | + android:inputType="textCapSentences" |
| 39 | + android:singleLine="true" |
| 40 | + android:textCursorDrawable="@null" |
| 41 | + android:textSize="@dimen/bigger_text_size" /> |
| 42 | + |
| 43 | + </com.simplemobiletools.commons.views.MyTextInputLayout> |
| 44 | +</LinearLayout> |
0 commit comments