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

Commit ec830651 authored by kaiyiz's avatar kaiyiz Committed by Xiaojing Zhang
Browse files

Settings: Fix some interface show abnormal in RTL

The ic_bt_cellphone icon color in ldrtl folder is white, it cannot be seen
in white background.
4G switch and MultiSimEnablerPreference layout properties is left/right,
that don't fit RTL mode.

Modify ic_bt_cellphone icon color to green to be consistent with the icon
color in normal folder.
Convert left/right layout properties to start/end properties.

Change-Id: I16ee4a7d485f594e817623fa4699c9e332d28e61
parent ee5d5bc3
Loading
Loading
Loading
Loading
−332 B (3.92 KiB)
Loading image diff...
−289 B (3.5 KiB)
Loading image diff...
−347 B (4.33 KiB)
Loading image diff...
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@
        <TextView android:id="@+id/subtitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@id/subicon"
            android:layout_toEndOf="@id/subicon"
            android:singleLine="true"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:fadingEdge="horizontal" />
+7 −7
Original line number Diff line number Diff line
@@ -39,10 +39,10 @@
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="6dip"
        android:layout_marginLeft="2dip"
        android:layout_marginRight="6dip"
        android:layout_marginTop="6dip"
        android:layout_marginBottom="2dip"
        android:layout_marginStart="2dip"
        android:layout_marginEnd="6dip"
        android:layout_marginTop="2dip"
        android:layout_weight="1" >

        <ImageView android:id="@+id/subicon"
@@ -56,7 +56,7 @@
            android:id="@+id/subtitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@id/subicon"
            android:layout_toEndOf="@id/subicon"
            android:fadingEdge="horizontal"
            android:singleLine="true"
            android:textAppearance="?android:attr/textAppearanceMedium" />
@@ -65,7 +65,7 @@
            android:id="@+id/subsummary"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@id/subtitle"
            android:layout_alignStart="@id/subtitle"
            android:layout_below="@id/subtitle"
            android:ellipsize="end"
            android:maxLines="2"
@@ -75,7 +75,7 @@
            android:id="@+id/subSwitchWidget"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true"
            android:layout_gravity="center"
            android:clickable="true"
            android:focusable="false"
Loading