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

Commit d07e7e46 authored by Danny Epstein's avatar Danny Epstein Committed by Automerger Merge Worker
Browse files

Merge "Add rotary support to the nav bar and HUN." into rvc-dev am: 16899978

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11545525

Change-Id: If09a110c5fa10652a29b397d171f56d32a2d719c
parents 0e4a0db2 16899978
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ android_library {
        "SystemUIPluginLib",
        "SystemUISharedLib",
        "SettingsLib",
        "car-ui-lib",
        "android.car.userlib",
        "androidx.legacy_legacy-support-v4",
        "androidx.recyclerview_recyclerview",
@@ -95,6 +96,7 @@ android_library {
        "androidx.slice_slice-builders",
        "androidx.arch.core_core-runtime",
        "androidx.lifecycle_lifecycle-extensions",
        "car-ui-lib",
        "SystemUI-tags",
        "SystemUI-proto",
        "metrics-helper-lib",
+0 −26
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2018 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
  -->

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/nav_bar_ripple_background_color">
    <item android:id="@android:id/mask">
        <shape android:shape="rectangle">
            <solid android:color="?android:colorAccent"/>
            <corners android:radius="6dp"/>
        </shape>
    </item>
</ripple>
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@
        android:gravity="bottom"
        android:orientation="vertical">

        <com.android.keyguard.AlphaOptimizedImageButton
        <com.android.systemui.statusbar.AlphaOptimizedImageView
            android:id="@+id/note"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
+2 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
        android:animateLayoutChanges="true"
        android:orientation="vertical">

        <com.android.keyguard.AlphaOptimizedImageButton
        <com.android.systemui.statusbar.AlphaOptimizedImageView
            android:id="@+id/car_nav_button_icon_image"
            android:layout_height="@dimen/car_navigation_button_icon_height"
            android:layout_width="match_parent"
@@ -40,7 +40,7 @@
            android:clickable="false"
        />

        <com.android.keyguard.AlphaOptimizedImageButton
        <com.android.systemui.statusbar.AlphaOptimizedImageView
            android:id="@+id/car_nav_button_more_icon"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@
        android:gravity="bottom"
        android:orientation="vertical">

        <com.android.keyguard.AlphaOptimizedImageButton
        <com.android.systemui.statusbar.AlphaOptimizedImageView
            android:id="@+id/note"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
Loading