Fix bug #15696670 Settings > Apps using old Holo colors in tabs, space indicator
- updated the LinearColorBar colors, the gradient colors on top of it
and also the label colors too for being compatible with the rest of
the Settings App theming
Change-Id: If88be4ac7084d26299e8e738389279bec636ccd6
diff --git a/res/layout/manage_applications_apps.xml b/res/layout/manage_applications_apps.xml
index 6f4bf10..ce2b6c6 100644
--- a/res/layout/manage_applications_apps.xml
+++ b/res/layout/manage_applications_apps.xml
@@ -70,10 +70,7 @@
android:layout_weight="0"
android:layout_marginTop="-20dp"
android:textAppearance="?android:attr/textAppearanceSmallInverse"
- android:textColor="#ccc"
- android:shadowColor="#000"
- android:shadowRadius="5"
- android:textStyle="bold"
+ android:textColor="?android:attr/textColorPrimary"
android:singleLine="true"
android:text="@string/internal_storage" />
<TextView android:id="@+id/freeStorageText"
diff --git a/res/layout/running_processes_view.xml b/res/layout/running_processes_view.xml
index 3a2552f..68967e4 100644
--- a/res/layout/running_processes_view.xml
+++ b/res/layout/running_processes_view.xml
@@ -71,10 +71,7 @@
android:layout_weight="0"
android:layout_marginTop="-20dp"
android:textAppearance="?android:attr/textAppearanceSmallInverse"
- android:textColor="#ccc"
- android:shadowColor="#000"
- android:shadowRadius="5"
- android:textStyle="bold"
+ android:textColor="?android:attr/textColorPrimary"
android:singleLine="true"
android:text="@string/memory" />
<TextView android:id="@+id/backgroundText"
diff --git a/src/com/android/settings/applications/LinearColorBar.java b/src/com/android/settings/applications/LinearColorBar.java
index f374c29..158a625 100644
--- a/src/com/android/settings/applications/LinearColorBar.java
+++ b/src/com/android/settings/applications/LinearColorBar.java
@@ -16,9 +16,9 @@
import android.widget.LinearLayout;
public class LinearColorBar extends LinearLayout {
- static final int LEFT_COLOR = 0xff0099cc;
- static final int MIDDLE_COLOR = 0xff0099cc;
- static final int RIGHT_COLOR = 0xff888888;
+ static final int LEFT_COLOR = 0xff009688;
+ static final int MIDDLE_COLOR = 0xff009688;
+ static final int RIGHT_COLOR = 0xffced7db;
static final int GRAY_COLOR = 0xff555555;
static final int WHITE_COLOR = 0xffffffff;