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

Commit 129343f7 authored by yyalan's avatar yyalan Committed by Yalan Yiue
Browse files

Add focus outline to the brightness slider

This CL consists of two parts:
1. Showing the focus background of ToggleSeekBar
2. In order for the background to be correctly rendered, we need to
expand the boundary of brightness slider (BrightnessSliderView uses
hardware layer so it crops its children)

Bug: 329244723
Flag: ACONFIG com.android.systemui.brightness_slider_focus_state DISABLED
Test: SwipeBrightness.kt
Change-Id: Ia8d88ac27c20a5354254937a7cf0e2d03f049ac6
parent dcb0555f
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -799,6 +799,13 @@ flag {
    bug: "312899524"
}

flag {
    name: "brightness_slider_focus_state"
    namespace: "systemui"
    description: "enables new focus outline for the brightness slider when focused on with physical keyboard"
    bug: "329244723"
}

flag {
   name: "edgeback_gesture_handler_get_running_tasks_background"
    namespace: "systemui"
+12 −4
Original line number Diff line number Diff line
@@ -14,7 +14,15 @@
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:left="@dimen/rounded_slider_boundary_offset"
        android:right="@dimen/rounded_slider_boundary_offset"
        android:top="@dimen/rounded_slider_boundary_offset"
        android:bottom="@dimen/rounded_slider_boundary_offset">
        <shape>
            <solid android:color="?attr/underSurface" />
            <corners android:radius="@dimen/rounded_slider_background_rounded_corner" />
        </shape>
    </item>
</layer-list>
+29 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2024 The Android Open Source Project
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->

<selector
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:androidprv="http://schemas.android.com/apk/prv/res/android">
    <item android:state_focused="true">
        <inset android:inset="-5dp">
            <shape>
                <corners android:radius="16dp"/>
                <stroke android:width="3dp" android:color="?androidprv:attr/materialColorSecondaryFixed"/>
            </shape>
        </inset>
    </item>
</selector>
 No newline at end of file
+4 −3
Original line number Diff line number Diff line
@@ -17,19 +17,20 @@
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/brightness_slider"
        android:layout_width="match_parent"
        android:layout_height="@dimen/brightness_mirror_height"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:clipChildren="false"
        android:clipToPadding="false"
        android:contentDescription="@string/accessibility_brightness"
        android:importantForAccessibility="no" >

        <com.android.systemui.settings.brightness.ToggleSeekBar
            android:id="@+id/slider"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_height="@dimen/brightness_mirror_height"
            android:layout_gravity="center_vertical"
            android:minHeight="48dp"
            android:thumb="@null"
            android:background="@null"
            android:paddingStart="0dp"
            android:paddingEnd="0dp"
            android:progressDrawable="@drawable/brightness_progress_drawable"
+1 −0
Original line number Diff line number Diff line
@@ -1671,6 +1671,7 @@
    <dimen name="rounded_slider_background_padding">8dp</dimen>
    <!-- rounded_slider_corner_radius + rounded_slider_background_padding -->
    <dimen name="rounded_slider_background_rounded_corner">32dp</dimen>
    <dimen name="rounded_slider_boundary_offset">16dp</dimen>

    <!-- Location on the screen of the center of the physical power button. This is a reasonable
    default that should be overridden by device-specific overlays. -->
Loading