1<!-- 2 ~ Copyright (C) 2018 The Android Open Source Project 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"); 5 ~ you may not use this file except in compliance with the License. 6 ~ You may obtain a copy of the License at 7 ~ 8 ~ http://www.apache.org/licenses/LICENSE-2.0 9 ~ 10 ~ Unless required by applicable law or agreed to in writing, software 11 ~ distributed under the License is distributed on an "AS IS" BASIS, 12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 ~ See the License for the specific language governing permissions and 14 ~ limitations under the License 15 --> 16 17<!-- This Icon is used in as the back icon on ActionBar. ActionBar hard code the icon layout and 18 ~ does not provide a way to customize it. Here to center the icon in action bar, we make up 19 ~ the margin by add the extra space in the icon itself --> 20<vector 21 android:height="@dimen/car_icon_size" 22 android:width="@dimen/car_icon_size" 23 android:tint="@color/car_accent" 24 android:viewportHeight="24.0" 25 android:viewportWidth="24.0" 26 xmlns:android="http://schemas.android.com/apk/res/android"> 27 <path 28 android:fillColor="#FF000000" 29 android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/> 30</vector> 31