diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index a943076f7f6..18c7ec28417 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -170,6 +170,13 @@ jobs: run: | bazel run //scripts:xml_syntax_check -- $(pwd) + - name: TextView Style Validation Check + # The expression if: ${{ !cancelled() }} runs a job or step regardless of its success or failure while responding to cancellations, + # serving as a cancellation-compliant alternative to if: ${{ always() }} in concurrent workflows. + if: ${{ !cancelled() }} + run: | + bazel run //scripts:check_textview_styles -- $(pwd) + - name: Testfile Presence Check # The expression if: ${{ !cancelled() }} runs a job or step regardless of its success or failure while responding to cancellations, # serving as a cancellation-compliant alternative to if: ${{ always() }} in concurrent workflows. diff --git a/app/src/main/res/layout-land/profile_chooser_fragment.xml b/app/src/main/res/layout-land/profile_chooser_fragment.xml index 661da1b5244..dcc2719fdc1 100644 --- a/app/src/main/res/layout-land/profile_chooser_fragment.xml +++ b/app/src/main/res/layout-land/profile_chooser_fragment.xml @@ -40,6 +40,7 @@ android:contentDescription="@string/language_icon_content_description" /> + android:textColor="@{footerViewModel.isAdministratorControlsSelected ? @color/component_color_drawer_fragment_admin_controls_selected_text_color : @color/component_color_shared_primary_dark_text_color}" /> diff --git a/app/src/main/res/layout/numeric_input_interaction_item.xml b/app/src/main/res/layout/numeric_input_interaction_item.xml index 2666f370985..fe6cd65f8ef 100644 --- a/app/src/main/res/layout/numeric_input_interaction_item.xml +++ b/app/src/main/res/layout/numeric_input_interaction_item.xml @@ -34,6 +34,7 @@ app:textChangedListener="@{viewModel.answerTextWatcher}" /> @dimen/onboarding_shared_text_size_large + +