|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + android:id="@+id/export_clips_wrapper" |
| 4 | + android:layout_width="match_parent" |
| 5 | + android:layout_height="match_parent"> |
| 6 | + |
| 7 | + <LinearLayout |
| 8 | + android:id="@+id/export_clips_holder" |
| 9 | + android:layout_width="match_parent" |
| 10 | + android:layout_height="wrap_content" |
| 11 | + android:orientation="vertical" |
| 12 | + android:paddingLeft="@dimen/activity_margin" |
| 13 | + android:paddingTop="@dimen/activity_margin" |
| 14 | + android:paddingRight="@dimen/activity_margin"> |
| 15 | + |
| 16 | + <com.simplemobiletools.commons.views.MyTextView |
| 17 | + android:id="@+id/export_clips_path_label" |
| 18 | + android:layout_width="wrap_content" |
| 19 | + android:layout_height="wrap_content" |
| 20 | + android:layout_marginStart="@dimen/small_margin" |
| 21 | + android:text="@string/path" |
| 22 | + android:textSize="@dimen/smaller_text_size" /> |
| 23 | + |
| 24 | + <com.simplemobiletools.commons.views.MyTextView |
| 25 | + android:id="@+id/export_clips_path" |
| 26 | + android:layout_width="match_parent" |
| 27 | + android:layout_height="wrap_content" |
| 28 | + android:layout_marginBottom="@dimen/small_margin" |
| 29 | + android:paddingStart="@dimen/small_margin" |
| 30 | + android:paddingTop="@dimen/small_margin" |
| 31 | + android:paddingBottom="@dimen/activity_margin" /> |
| 32 | + |
| 33 | + <com.simplemobiletools.commons.views.MyTextInputLayout |
| 34 | + android:id="@+id/export_clips_hint" |
| 35 | + android:layout_width="match_parent" |
| 36 | + android:layout_height="wrap_content" |
| 37 | + android:hint="@string/filename_without_txt"> |
| 38 | + |
| 39 | + <com.simplemobiletools.commons.views.MyEditText |
| 40 | + android:id="@+id/export_clips_filename" |
| 41 | + android:layout_width="match_parent" |
| 42 | + android:layout_height="wrap_content" |
| 43 | + android:layout_marginBottom="@dimen/activity_margin" |
| 44 | + android:singleLine="true" |
| 45 | + android:textCursorDrawable="@null" |
| 46 | + android:textSize="@dimen/normal_text_size" /> |
| 47 | + |
| 48 | + </com.simplemobiletools.commons.views.MyTextInputLayout> |
| 49 | + </LinearLayout> |
| 50 | +</ScrollView> |
0 commit comments