- Add build-apk.sh for easy compilation - Simplify AndroidManifest.xml - Fix themes.xml to use basic Android themes - Enable BuildConfig - Add okhttp-dnsoverhttps dependency
80 lines
4.3 KiB
XML
80 lines
4.3 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.
|
|
-->
|
|
|
|
<!--
|
|
===============================================================
|
|
PLEASE READ
|
|
===============================================================
|
|
|
|
The Material themes must not be modified in order to pass CTS.
|
|
Many related themes and styles depend on other values defined in this file.
|
|
If you would like to provide custom themes and styles for your device,
|
|
please see styles_device_defaults.xml.
|
|
|
|
===============================================================
|
|
PLEASE READ
|
|
===============================================================
|
|
-->
|
|
<resources>
|
|
<!-- Default theme for material style input methods, which is used by the
|
|
{@link android.inputmethodservice.InputMethodService} class.
|
|
this inherits from Theme.Panel, but sets up IME appropriate animations
|
|
and a few custom attributes. -->
|
|
<style name="Theme.Material.InputMethod" parent="Theme.Material.Panel">
|
|
<item name="windowAnimationStyle">@style/Animation.InputMethod</item>
|
|
<item name="imeFullscreenBackground">?colorBackground</item>
|
|
<item name="imeExtractEnterAnimation">@anim/input_method_extract_enter</item>
|
|
<item name="windowSwipeToDismiss">false</item>
|
|
</style>
|
|
|
|
<!-- Override behaviour to set the theme colours for dialogs, keep them the same. -->
|
|
<style name="ThemeOverlay.Material.Dialog" parent="ThemeOverlay.Material.BaseDialog">
|
|
<item name="windowIsFloating">false</item>
|
|
<item name="windowElevation">0dp</item>
|
|
</style>
|
|
|
|
<!-- Force the background and floating colours to be the default colours. -->
|
|
<style name="Theme.Material.Dialog" parent="Theme.Material.BaseDialog">
|
|
<item name="colorBackground">@color/background_material_dark</item>
|
|
<item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
|
|
<item name="colorBackgroundCacheHint">@color/background_cache_hint_selector_material_dark</item>
|
|
<item name="windowIsFloating">false</item>
|
|
<item name="windowElevation">0dp</item>
|
|
</style>
|
|
|
|
<!-- Force the background and floating colours to be the default colours. -->
|
|
<style name="Theme.Material.Light.Dialog" parent="Theme.Material.Light.BaseDialog">
|
|
<item name="colorBackground">@color/background_material_light</item>
|
|
<item name="colorBackgroundFloating">@color/background_floating_material_light</item>
|
|
<item name="colorBackgroundCacheHint">@color/background_cache_hint_selector_material_light</item>
|
|
<item name="windowIsFloating">false</item>
|
|
<item name="windowElevation">0dp</item>
|
|
</style>
|
|
|
|
<!-- Force all settings themes to use normal Material theme. -->
|
|
<style name="Theme.Material.Settings" parent="Theme.Material"/>
|
|
<style name="Theme.Material.Settings.NoActionBar" parent="Theme.Material"/>
|
|
<style name="Theme.Material.Settings.BaseDialog" parent="Theme.Material.Dialog"/>
|
|
<style name="Theme.Material.Settings.Dialog" parent="Theme.Material.Settings.BaseDialog"/>
|
|
<style name="Theme.Material.Settings.Dialog.BaseAlert" parent="Theme.Material.Dialog.BaseAlert"/>
|
|
<style name="Theme.Material.Settings.Dialog.Alert" parent="Theme.Material.Settings.Dialog.BaseAlert"/>
|
|
<style name="Theme.Material.Settings.DialogWhenLarge" parent="Theme.Material.DialogWhenLarge"/>
|
|
<style name="Theme.Material.Settings.DialogWhenLarge.NoActionBar" parent="Theme.Material.DialogWhenLarge.NoActionBar"/>
|
|
<style name="Theme.Material.Settings.Dialog.Presentation" parent="Theme.Material.Dialog.Presentation"/>
|
|
<style name="Theme.Material.Settings.SearchBar" parent="Theme.Material.SearchBar"/>
|
|
<style name="Theme.Material.Settings.CompactMenu" parent="Theme.Material.CompactMenu"/>
|
|
</resources>
|