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

Commit e5c75ab4 authored by Fabrice Di Meglio's avatar Fabrice Di Meglio
Browse files

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
parent cc22af08
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -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"
+1 −4
Original line number Diff line number Diff line
@@ -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"
+3 −3
Original line number Diff line number Diff line
@@ -16,9 +16,9 @@ import android.view.MotionEvent;
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;