1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2023 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 <!-- Text for the options. --> 20 <array name="banner_view_type"> 21 <item>Random colour</item> 22 <item>Inflated from layout</item> 23 <item>Video</item> 24 <item>Webview</item> 25 <item>Ad Refresh</item> 26 <item>EditText</item> 27 </array> 28 <array name="banner_on_click"> 29 <item>Open Chrome</item> 30 <item>Open Package</item> 31 </array> 32 <array name="banner_placement"> 33 <item>Bottom of screen</item> 34 <item>In Scroll View</item> 35 </array> 36 <array name="banner_ad_size"> 37 <item>Small</item> 38 <item>Medium</item> 39 <item>Large</item> 40 </array> 41 <!-- Values for the options, matching the enum names. --> 42 <array name="banner_view_type_values"> 43 <item>RANDOM_COLOUR</item> 44 <item>INFLATED</item> 45 <item>VIDEO</item> 46 <item>WEBVIEW</item> 47 <item>AD_REFRESH</item> 48 <item>EDITTEXT</item> 49 </array> 50 <array name="banner_on_click_values"> 51 <item>OPEN_CHROME</item> 52 <item>OPEN_PACKAGE</item> 53 </array> 54 <array name="banner_placement_values"> 55 <item>BOTTOM</item> 56 <item>SCROLL_VIEW</item> 57 </array> 58 <array name="banner_ad_size_values"> 59 <item>SMALL</item> 60 <item>MEDIUM</item> 61 <item>LARGE</item> 62 </array> 63</resources>