|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + xmlns:tools="http://schemas.android.com/tools" |
| 4 | + android:layout_width="match_parent" |
| 5 | + android:layout_height="wrap_content" |
| 6 | + android:orientation="vertical" |
| 7 | + android:paddingTop="8dp"> |
| 8 | + |
| 9 | + <FrameLayout |
| 10 | + android:id="@+id/layoutFirst" |
| 11 | + android:layout_width="match_parent" |
| 12 | + android:layout_height="wrap_content" |
| 13 | + android:paddingStart="20dp" |
| 14 | + android:paddingEnd="20dp"> |
| 15 | + |
| 16 | + <RadioButton |
| 17 | + android:id="@+id/radioFirst" |
| 18 | + android:layout_width="match_parent" |
| 19 | + android:layout_height="?listPreferredItemHeightSmall" |
| 20 | + android:gravity="center_vertical" |
| 21 | + android:paddingStart="20dp" |
| 22 | + android:paddingEnd="0dp" |
| 23 | + android:text="@string/behaviour_skip_first" |
| 24 | + android:textAppearance="?android:textAppearanceMedium" |
| 25 | + android:textColor="?textColorAlertDialogListItem" /> |
| 26 | + |
| 27 | + </FrameLayout> |
| 28 | + |
| 29 | + <FrameLayout |
| 30 | + android:id="@+id/layoutLast" |
| 31 | + android:layout_width="match_parent" |
| 32 | + android:layout_height="wrap_content" |
| 33 | + android:paddingStart="20dp" |
| 34 | + android:paddingEnd="20dp"> |
| 35 | + |
| 36 | + <RadioButton |
| 37 | + android:id="@+id/radioLast" |
| 38 | + android:layout_width="match_parent" |
| 39 | + android:layout_height="?listPreferredItemHeightSmall" |
| 40 | + android:gravity="center_vertical" |
| 41 | + android:paddingStart="20dp" |
| 42 | + android:paddingEnd="0dp" |
| 43 | + android:text="@string/behaviour_skip_last" |
| 44 | + android:textAppearance="?android:textAppearanceMedium" |
| 45 | + android:textColor="?textColorAlertDialogListItem" /> |
| 46 | + |
| 47 | + </FrameLayout> |
| 48 | + |
| 49 | + <LinearLayout |
| 50 | + android:id="@+id/layoutLoops" |
| 51 | + android:layout_width="match_parent" |
| 52 | + android:layout_height="wrap_content" |
| 53 | + android:gravity="center_vertical" |
| 54 | + android:orientation="horizontal" |
| 55 | + android:paddingStart="20dp" |
| 56 | + android:paddingEnd="20dp"> |
| 57 | + |
| 58 | + <RadioButton |
| 59 | + android:id="@+id/radioLoops" |
| 60 | + android:layout_width="wrap_content" |
| 61 | + android:layout_height="?listPreferredItemHeightSmall" |
| 62 | + android:gravity="center_vertical" |
| 63 | + android:paddingStart="20dp" |
| 64 | + android:paddingEnd="0dp" /> |
| 65 | + |
| 66 | + <com.google.android.material.textfield.TextInputLayout |
| 67 | + android:id="@+id/textInput" |
| 68 | + style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense" |
| 69 | + android:layout_width="match_parent" |
| 70 | + android:layout_height="wrap_content" |
| 71 | + android:hint="@string/behaviour_skip_loops"> |
| 72 | + |
| 73 | + <com.google.android.material.textfield.TextInputEditText |
| 74 | + android:id="@+id/edit" |
| 75 | + android:layout_width="match_parent" |
| 76 | + android:layout_height="wrap_content" |
| 77 | + android:hint="1 2 3" |
| 78 | + android:imeOptions="actionDone" |
| 79 | + android:importantForAutofill="no" |
| 80 | + android:inputType="number|text" |
| 81 | + android:selectAllOnFocus="true" |
| 82 | + tools:ignore="HardcodedText" /> |
| 83 | + |
| 84 | + </com.google.android.material.textfield.TextInputLayout> |
| 85 | + |
| 86 | + </LinearLayout> |
| 87 | + |
| 88 | +</LinearLayout> |
0 commit comments