Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37aaf5a8 authored by Dave Kover's avatar Dave Kover Committed by Gerrit Code Review
Browse files

Expose text color in MSIM edit dialog.

Text color for both edit text and color picker is hardcoded to
FW black. Added new values to cm_colors which themes can access
to change this. Say yes to the dress.

Change-Id: Iedd025beff528884f4e2d956ab302c09ebfce759
parent a7ee00bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@
                    android:hint="@string/sim_name_hint"
                    android:inputType="textNoSuggestions"
                    android:maxLength="@integer/sim_name_length"
                    android:textColor="@android:color/black"
                    android:textColor="@color/msim_edit_name_text_color"
                    style="?android:attr/textAppearanceMedium" />

        </LinearLayout>
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
        android:paddingBottom="8dp"
        android:paddingRight="8dp"
        android:paddingLeft="8dp"
        android:textColor="@android:color/black"
        android:textColor="@color/msim_color_picker_text_color"
        style="?android:attr/textAppearanceMedium" />

</LinearLayout>
 No newline at end of file
+6 −0
Original line number Diff line number Diff line
@@ -59,4 +59,10 @@

    <!-- Personal Dictionary Add Icon -->
    <drawable name="ic_menu_add_word">@drawable/ic_menu_add_dark</drawable>

    <!-- Multi-sim Color Picker Text Color -->
    <color name="msim_color_picker_text_color">@android:color/black</color>

    <!-- Multi-sim Edit Name Text Color -->
    <color name="msim_edit_name_text_color">@android:color/black</color>
</resources>