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

Commit 8f000b7d authored by calderwoodra's avatar calderwoodra Committed by Copybara-Service
Browse files

Some minor tweaks to the UI.

Bug: 79883035
Test: tap
PiperOrigin-RevId: 198510062
Change-Id: Ia07624a4511626b2b397199f3674817612557133
parent 70189d8b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -59,5 +59,6 @@
      android:layout_height="wrap_content"
      android:layout_marginBottom="8dp"
      android:gravity="center_horizontal"
      android:textSize="12sp"
      style="@style/Dialer.TextAppearance.Secondary"/>
</com.android.dialer.main.impl.bottomnav.BottomNavItem>
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -61,8 +61,8 @@
            android:layout_toEndOf="@+id/search_magnifying_glass"
            android:layout_toStartOf="@+id/voice_search_button"
            android:text="@string/dialer_hint_find_contact"
            android:textColor="?android:attr/textColorHint"
            android:textSize="16dp"/>
            android:textSize="16dp"
            style="@style/Dialer.TextAppearance.Secondary"/>

        <ImageView
            android:id="@+id/voice_search_button"
+11 −1
Original line number Diff line number Diff line
@@ -23,4 +23,14 @@
  <attr name="colorTextOnUnthemedDarkBackground" format="color"/>
  <!-- Used to color icons on dark backgrounds. White in Light Theme. -->
  <attr name="colorIconOnUnthemedDarkBackground" format="color"/>
  <!-- Used to color the background of chat bubbles we send -->
  <attr name="colorMobileOriginatingChatBackground" format="color"/>
  <!-- Used to color the text in chat bubbles we send -->
  <attr name="colorMobileOriginatingChatText" format="color"/>
  <!-- Used to color the background of chat bubbles we receive -->
  <attr name="colorMobileTerminatingChatBackground" format="color"/>
  <!-- Used to color the text in chat bubbles we receive -->
  <attr name="colorMobileTerminatingChatText" format="color"/>
  <!-- Used to theme ripple effects with the app's primary color. -->
  <attr name="colorPrimary20pct" format="color|reference"/>
</resources>
+0 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@
    <item name="android:textColorSecondary">@color/settings_text_color_secondary</item>
    <item name="android:windowBackground">?android:attr/colorBackground</item>
    <item name="android:colorAccent">?android:attr/colorPrimary</item>
    <item name="android:textColorLink">?android:attr/colorPrimary</item>
  </style>

  <!-- TODO(a bug): This is only actively used in empty_content_view.xml. Move it there. -->
+14 −13
Original line number Diff line number Diff line
@@ -33,24 +33,24 @@
  <!-- Activities and Applications should inherit from one of the themes above. -->
  <style name="Dialer.Dark.ThemeBase">
    <!-- These values should be used to color all backgrounds. -->
    <item name="android:colorBackground">@color/dialer_dark_background</item>
    <item name="android:colorBackgroundFloating">@color/dialer_dark_background_floating</item>
    <item name="android:colorBackground">@color/google_grey_900</item>
    <item name="android:colorBackgroundFloating">@color/google_grey_800</item>

    <!-- These values should be used to set text color. -->
    <!-- swap text colors. -->
    <item name="android:textColorPrimary">@color/dialer_primary_text_color_inverse</item>
    <item name="android:textColorSecondary">@color/dialer_secondary_text_color_inverse</item>
    <item name="android:textColorPrimary">@color/dialer_dark_primary_text_color</item>
    <item name="android:textColorSecondary">@color/dialer_dark_secondary_text_color</item>
    <item name="android:textColorPrimaryInverse">@color/dialer_primary_text_color</item>
    <item name="android:textColorSecondaryInverse">@color/dialer_secondary_text_color</item>
    <item name="android:textColorHint">@color/dialer_text_hint_color</item>
    <item name="android:textColorHint">@color/google_grey_600</item>

    <!-- These will be automatically used to color most Appcompat/Material widgets. -->
    <item name="android:colorPrimary">@color/dialer_theme_color</item>
    <item name="colorPrimary">@color/dialer_theme_color</item>
    <item name="android:colorPrimaryDark">@color/dialer_theme_color_dark</item>
    <item name="colorPrimaryDark">@color/dialer_theme_color_dark</item>
    <item name="android:colorAccent">@color/dialer_secondary_color</item>
    <item name="colorAccent">@color/dialer_secondary_color</item>
    <item name="android:colorPrimary">@color/dialer_dark_theme_color</item>
    <item name="colorPrimary">@color/dialer_dark_theme_color</item>
    <item name="android:colorPrimaryDark">@color/dialer_dark_theme_color_dark</item>
    <item name="colorPrimaryDark">@color/dialer_dark_theme_color_dark</item>
    <item name="android:colorAccent">@color/dialer_dark_secondary_color</item>
    <item name="colorAccent">@color/dialer_dark_secondary_color</item>

    <!-- Used to automatically style check/selected checkbox, switches and radio buttons -->
    <item name="colorControlActivated">?android:attr/colorPrimary</item>
@@ -58,7 +58,8 @@
    <!-- Dialer specific attributes. -->
    <item name="colorIcon">?android:attr/textColorSecondary</item>
    <item name="colorIconSecondary">?android:attr/textColorSecondary</item>
    <item name="colorTextOnUnthemedDarkBackground">@color/dialer_primary_text_color_inverse</item>
    <item name="colorIconOnUnthemedDarkBackground">@color/dialer_icon_color_white</item>
    <item name="colorTextOnUnthemedDarkBackground">@android:color/white</item>
    <item name="colorIconOnUnthemedDarkBackground">@android:color/white</item>
    <item name="colorPrimary20pct">@color/dialer_dark_theme_color_20pct</item>
  </style>
</resources>
 No newline at end of file
Loading