Unifying the assets between aosp and pixel while replacing all the image files per density/orientation with singular xml vector files to simplify the assets. In addition added a shadow/rotation class to allow these drawables to be rotated and have a shadow to avoid multiple images of the same shape in different orientations. Therefore there are a lot of images deleted replaced by a couple of xml file. Fixes: 79610337 Fixes: 77731348 Fixes: 65692723 Test: manual Change-Id: I3fbe2bada815bb98e5ab7e2733f7794054ff649f
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 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.
|
|
-->
|
|
|
|
<com.android.systemui.statusbar.policy.KeyButtonView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:systemui="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/back"
|
|
android:layout_width="@dimen/navigation_key_width"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0"
|
|
systemui:keyCode="4"
|
|
android:scaleType="center"
|
|
android:contentDescription="@string/accessibility_back"
|
|
android:paddingStart="@dimen/navigation_key_padding"
|
|
android:paddingEnd="@dimen/navigation_key_padding"
|
|
/>
|
|
|