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

Commit 227f0b75 authored by Altaf-Mahdi's avatar Altaf-Mahdi Committed by Steve Kondik
Browse files

LatinIME: fix action bar theme issue

Change-Id: Ibfe963b8bdc7049ee7864cc1c883ad06c880d9c3
parent 4beced16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
        coreApp="true"
        package="com.android.inputmethod.latin">

    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" />
    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
+8 −1
Original line number Diff line number Diff line
@@ -20,6 +20,13 @@

<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <style name="platformActivityTheme" parent="@android:style/Theme.DeviceDefault.Light" />
    <style name="platformSettingsTheme" parent="@android:style/Theme.DeviceDefault.Light" />
    <style name="platformSettingsTheme" parent="android:Theme.Material.Light.DarkActionBar">
      <!-- Used by the ActionBar -->
      <item name="android:colorPrimary">@color/theme_primary</item>
      <!-- Used by the StatusBar -->
      <item name="android:colorPrimaryDark">@color/theme_primary_dark</item>
      <!-- Used by controls, e.g. CheckBox, ProgressBar, etc. -->
      <item name="android:colorAccent">@color/theme_accent</item>
    </style>
    <style name="platformDialogTheme" parent="@android:style/Theme.DeviceDefault.Light.Dialog" />
</resources>
+5 −0
Original line number Diff line number Diff line
@@ -84,4 +84,9 @@
    <color name="setup_welcome_video_margin_color">#FFCCCCCC</color>
    <!-- Accent color for the notification. We need to match this to the OS build -->
    <color name="notification_accent_color">#FF607D8B</color>

    <!-- Palette colors referenced by top-level themes. -->
    <color name="theme_primary">#ff263238</color>
    <color name="theme_primary_dark">#ff21272b</color>
    <color name="theme_accent">#ff009688</color>
</resources>