diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-01-18 14:35:57 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-01-18 14:35:57 +0000 |
commit | f13d4576e1330f69c868cd0b3d4cf605801edf94 (patch) | |
tree | 61585d1901aefd41bf1e009c3e3cf075a4dc8571 /app/src/main/res | |
parent | d2749d15d5009dfca3bbbdcf40c3512f1ee792e4 (diff) | |
download | infinity-for-reddit-f13d4576e1330f69c868cd0b3d4cf605801edf94.tar infinity-for-reddit-f13d4576e1330f69c868cd0b3d4cf605801edf94.tar.gz infinity-for-reddit-f13d4576e1330f69c868cd0b3d4cf605801edf94.tar.bz2 infinity-for-reddit-f13d4576e1330f69c868cd0b3d4cf605801edf94.tar.lz infinity-for-reddit-f13d4576e1330f69c868cd0b3d4cf605801edf94.tar.xz infinity-for-reddit-f13d4576e1330f69c868cd0b3d4cf605801edf94.tar.zst infinity-for-reddit-f13d4576e1330f69c868cd0b3d4cf605801edf94.zip |
Minor UI tweaks for dialog_insert_link.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/dialog_insert_link.xml | 58 |
1 files changed, 40 insertions, 18 deletions
diff --git a/app/src/main/res/layout/dialog_insert_link.xml b/app/src/main/res/layout/dialog_insert_link.xml index c54e66ff..fcaad293 100644 --- a/app/src/main/res/layout/dialog_insert_link.xml +++ b/app/src/main/res/layout/dialog_insert_link.xml @@ -1,30 +1,52 @@ <?xml version="1.0" encoding="utf-8"?> -<LinearLayout - xmlns:android="http://schemas.android.com/apk/res/android" +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" + xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical"> - <EditText - android:id="@+id/edit_text_insert_link_dialog" + <com.google.android.material.textfield.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:padding="24dp" - android:background="#00000000" - android:hint="@string/text_hint" - android:textColor="?attr/primaryTextColor" - android:textSize="?attr/font_default" - android:fontFamily="?attr/font_family" /> + android:paddingStart="16dp" + android:paddingTop="8dp" + android:paddingEnd="16dp" + android:paddingBottom="8dp" + app:boxStrokeColor="?attr/primaryTextColor" + app:hintTextColor="?attr/primaryTextColor" + style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"> - <EditText - android:id="@+id/edit_link_insert_link_dialog" + <com.google.android.material.textfield.TextInputEditText + android:id="@+id/edit_text_insert_link_dialog" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:hint="@string/text_hint" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_default" + android:fontFamily="?attr/font_family" /> + + </com.google.android.material.textfield.TextInputLayout> + + <com.google.android.material.textfield.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:padding="24dp" - android:background="#00000000" - android:hint="@string/link_hint" - android:textColor="?attr/primaryTextColor" - android:textSize="?attr/font_default" - android:fontFamily="?attr/font_family" /> + android:paddingStart="16dp" + android:paddingTop="8dp" + android:paddingEnd="16dp" + android:paddingBottom="8dp" + app:boxStrokeColor="?attr/primaryTextColor" + app:hintTextColor="?attr/primaryTextColor" + style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"> + + <com.google.android.material.textfield.TextInputEditText + android:id="@+id/edit_link_insert_link_dialog" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:hint="@string/link_hint" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_default" + android:fontFamily="?attr/font_family" /> + + </com.google.android.material.textfield.TextInputLayout> </LinearLayout>
\ No newline at end of file |