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

Commit f920f61f authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 13076573 from be9c39f0 to 25Q2-release

Change-Id: I06ad0e0cee2e3d375f7ed299ccbf8062da4cfe56
parents 167f77fb be9c39f0
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8" ?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape>
            <corners android:radius="8dp" />
            <solid android:color="@color/settingslib_materialColorSurfaceContainerHighest" />
        </shape>
    </item>
    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <corners android:radius="8dp" />
                <solid android:color="@color/settingslib_materialColorPrimary" />
            </shape>
        </clip>
    </item>
</layer-list>
 No newline at end of file
+2 −1
Original line number Diff line number Diff line
@@ -74,7 +74,8 @@
                android:max="100"
                android:layout_below="@android:id/title"
                app:layout_constraintTop_toBottomOf="@android:id/title"
                style="?android:attr/progressBarStyleHorizontal" />
                style="?android:attr/progressBarStyleHorizontal"
                android:progressDrawable="@drawable/storage_progress_bar" />
        </androidx.constraintlayout.widget.ConstraintLayout>
    </LinearLayout>
</LinearLayout>
+2 −0
Original line number Diff line number Diff line
@@ -5167,6 +5167,8 @@
    <string name="accessibility_feedback_summary">Help improve by taking a survey</string>
    <!-- Summary for the accessibility feedback preference is disabled. [CHAR LIMIT=100] -->
    <string name="accessibility_feedback_disabled_summary">No surveys available</string>
    <!-- The menu item to start the feedback process for the accessibility [CHAR LIMIT=30] -->
    <string name="accessibility_send_feedback_title">Send feedback</string>
    <!-- Title for the accessibility preference category of services downloaded by the user. [CHAR LIMIT=50] -->
    <string name="user_installed_services_category_title">Downloaded apps</string>
    <!-- Title for the accessibility preference category of settings considered to be experimental, meaning they might be changed or removed in the future. [CHAR LIMIT=50] -->
+0 −2
Original line number Diff line number Diff line
@@ -52,7 +52,6 @@
            android:key="mobile_network_spn"
            android:title="@string/mobile_network_spn_title"
            android:summary="@string/summary_placeholder"
            android:selectable="false"
            settings:controller="com.android.settings.network.telephony.MobileNetworkSpnPreferenceController"
            settings:allowDividerAbove="true" />

@@ -60,7 +59,6 @@
            android:key="phone_number"
            android:title="@string/status_number"
            android:summary="@string/summary_placeholder"
            android:selectable="false"
            settings:controller="com.android.settings.network.telephony.MobileNetworkPhoneNumberPreferenceController"
            settings:allowDividerBelow="true"
            settings:enableCopying="true"/>
+0 −1
Original line number Diff line number Diff line
@@ -57,7 +57,6 @@
            android:order="3"
            android:title="@string/status_number"
            android:summary="@string/summary_placeholder"
            android:selectable="false"
            settings:isPreferenceVisible="@bool/config_show_sim_info"
            settings:controller="com.android.settings.deviceinfo.PhoneNumberPreferenceController"
            settings:enableCopying="true"/>
Loading