You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
3.4 KiB
82 lines
3.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2019 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.
|
|
-->
|
|
|
|
<!-- The collection of resources for theming the appearance of a device -->
|
|
<!-- TODO: Resolving resource overlay for Q module updates. Remove when public.xml is
|
|
removed from DocumentsUIGoogle.
|
|
Add a new entry to DocumentsUIGoogle public.xml when adding new resource here.
|
|
Follow these steps to identify a new resource id for the resource.
|
|
1. Find last resource id for the particular type.
|
|
bool, string, etc.
|
|
Example: <public type="bool" name="pre_existing_bool" id="0x7f04001a" />
|
|
bool last resource id is 0x7f04001a
|
|
First 6 characters are an identifier for bool, so the id should be
|
|
0x7f04xxxx where xxxx is 001a+1 = 001b.
|
|
4. Add entry to public.xml
|
|
Example: <public type="bool" name="new_bool_config" id="0x7f04001b" />
|
|
-->
|
|
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<overlayable name="DocumentsUICustomization">
|
|
|
|
<!-- START VENDOR CUSTOMIZATION -->
|
|
<policy type="product|system|vendor">
|
|
<!-- START THEME / STYLE -->
|
|
<item type="style" name="DocumentsTheme"/>
|
|
<!-- END THEME / STYLE -->
|
|
|
|
<!-- START COLOR -->
|
|
<item type="color" name="primary"/>
|
|
<item type="color" name="list_item_selected_background_color"/>
|
|
<item type="color" name="color_surface_header"/>
|
|
<!-- END COLOR -->
|
|
|
|
<!-- START DIMEN -->
|
|
<item type="dimen" name="grid_item_radius"/>
|
|
<item type="dimen" name="search_chip_radius"/>
|
|
<!-- END DIMEN -->
|
|
|
|
<!-- START DRAWABLE -->
|
|
<item type="drawable" name="ic_eject"/>
|
|
<item type="drawable" name="ic_root_download"/>
|
|
<item type="drawable" name="ic_sd_storage"/>
|
|
<item type="drawable" name="ic_root_smartphone"/>
|
|
<item type="drawable" name="root_list_selector"/>
|
|
<!-- END DRAWABLE -->
|
|
|
|
<!-- START BOOLEAN CONFIG -->
|
|
<item type="bool" name="config_button_all_caps"/>
|
|
<item type="bool" name="config_default_show_device_root"/>
|
|
<item type="bool" name="handle_view_downloads_intent"/>
|
|
<item type="bool" name="is_launcher_enabled"/>
|
|
<item type="bool" name="show_search_bar"/>
|
|
<!-- END BOOLEAN CONFIG -->
|
|
|
|
<!-- START STRING CONFIG -->
|
|
<item type="string" name="config_fontFamily"/>
|
|
<item type="string" name="config_fontFamilyMedium"/>
|
|
<item type="string" name="default_root_uri"/>
|
|
<item type="string" name="preferred_root_package"/>
|
|
<item type="string" name="trusted_quick_viewer_package"/>
|
|
<!-- END STRING CONFIG -->
|
|
|
|
</policy>
|
|
<!-- END VENDOR CUSTOMIZATION -->
|
|
|
|
</overlayable>
|
|
|
|
</resources>
|