diff options
author | Norbel AMBANUMBEN <aanorbel@gmail.com> | 2024-10-29 14:55:22 +0100 |
---|---|---|
committer | Norbel AMBANUMBEN <aanorbel@gmail.com> | 2024-10-29 14:55:22 +0100 |
commit | 29421936e623c493b2672122c070a14229318fe2 (patch) | |
tree | ca191c059ee87bc2dd9de1b4e2b2c9fcbf7a000a /app/src/main/res/layout/f_provider_selection.xml | |
parent | 88ae515ad4a3629d758d641df2ca052684464d08 (diff) |
chore: update view and text
Diffstat (limited to 'app/src/main/res/layout/f_provider_selection.xml')
-rw-r--r-- | app/src/main/res/layout/f_provider_selection.xml | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/app/src/main/res/layout/f_provider_selection.xml b/app/src/main/res/layout/f_provider_selection.xml index e1b7fc64..8ec7e7c0 100644 --- a/app/src/main/res/layout/f_provider_selection.xml +++ b/app/src/main/res/layout/f_provider_selection.xml @@ -97,36 +97,31 @@ android:layout_height="wrap_content" android:orientation="horizontal"> <androidx.appcompat.widget.AppCompatTextView - android:paddingTop="@dimen/stdpadding" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/syntax_check"/> <androidx.appcompat.widget.AppCompatTextView android:id="@+id/syntax_check_result" - android:paddingTop="@dimen/stdpadding" android:paddingStart="@dimen/stdpadding" android:layout_width="match_parent" android:layout_height="wrap_content" tools:text="Good"/> </LinearLayout> <LinearLayout - android:visibility="gone" android:id="@+id/qr_scanner" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingVertical="@dimen/stdpadding" android:orientation="horizontal"> - <androidx.appcompat.widget.AppCompatImageView - android:paddingTop="@dimen/stdpadding" + <androidx.appcompat.widget.AppCompatButton + android:id="@+id/btn_qr_scanner" + android:padding="@dimen/stdpadding" android:layout_width="match_parent" android:layout_height="wrap_content" - app:srcCompat="@drawable/qr_code_scanner"/> - <androidx.appcompat.widget.AppCompatTextView - android:paddingTop="@dimen/stdpadding" - android:paddingStart="@dimen/stdpadding" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:text="@string/qr_scanner_prompt"/> + android:drawableStart="@drawable/qr_code_scanner" + android:text="@string/qr_scanner_prompt" + android:background="?attr/selectableItemBackground" + android:gravity="center_vertical"/> </LinearLayout> </androidx.appcompat.widget.LinearLayoutCompat> </androidx.appcompat.widget.LinearLayoutCompat> |