1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright 2019 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License. 16 --> 17 18<resources> 19 <!-- These are drawables to be used as placeholder album art. Album art 20 can be displayed in 2 modes, foreground or background. Foreground art 21 is displayed prominently (such as with other song metadata), whereas 22 background art is only used for backgrounds, and is typically 23 partially blurred/hidden. --> 24 <array name="placeholder_images"> 25 <item>@drawable/ic_placeholder_0</item> 26 <item>@drawable/ic_placeholder_1</item> 27 <item>@drawable/ic_placeholder_2</item> 28 <item>@drawable/ic_placeholder_3</item> 29 <item>@drawable/ic_placeholder_4</item> 30 <item>@drawable/ic_placeholder_5</item> 31 <item>@drawable/ic_placeholder_6</item> 32 <item>@drawable/ic_placeholder_7</item> 33 </array> 34 <!-- This array is for the backgrounds of the placeholder images above --> 35 <array name="placeholder_backgrounds"> 36 <item>@drawable/placeholder_color_drawable_0</item> 37 <item>@drawable/placeholder_color_drawable_1</item> 38 <item>@drawable/placeholder_color_drawable_2</item> 39 <item>@drawable/placeholder_color_drawable_3</item> 40 <item>@drawable/placeholder_color_drawable_4</item> 41 <item>@drawable/placeholder_color_drawable_5</item> 42 <item>@drawable/placeholder_color_drawable_6</item> 43 <item>@drawable/placeholder_color_drawable_7</item> 44 </array> 45 46 47 <!-- These media sources are displayed by the AppSelectionFragment in the order defined here. 48 Other sources follow in alphabetical order. --> 49 <string-array name="preferred_media_sources" translatable="false"> 50 <item>com.android.car.radio/.service.RadioAppService</item> 51 </string-array> 52 53</resources>