Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb458850 authored by Garfield Tan's avatar Garfield Tan
Browse files

Move resources spec to overlay.

Bug: 35667926
Test: It builds and picks up the right override.
Change-Id: I0e86a48871450eac11f4949fbf609c841710f0b7
parent 04d1b155
Loading
Loading
Loading
Loading

res/values-v24/colors.xml

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2017 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.
-->

<resources>
    <color name="item_doc_title_disabled">#8a000000</color>
    <item name="root_icon_disabled_alpha" format="float" type="dimen">0.26</item>
    <color name="dialog_title">#de000000</color>
    <color name="accent_dark">#5E97F6</color>
</resources>

res/values-v24/drawable.xml

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2017 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.
-->

<resources>
    <item name="image_root_icon" type="drawable">@drawable/ic_doc_image</item>
    <item name="video_root_icon" type="drawable">@drawable/ic_doc_video</item>
    <item name="audio_root_icon" type="drawable">@drawable/ic_doc_audio</item>
    <item name="generic_doc_icon" type="drawable">@drawable/ic_doc_generic</item>
</resources>

res/values-v24/styles.xml

deleted100644 → 0
+0 −38
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2017 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.
-->

<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <style name="DocumentsTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
        <item name="actionBarWidgetTheme">@null</item>
        <item name="actionBarTheme">@style/ActionBarTheme</item>
        <item name="actionBarPopupTheme">@style/ActionBarPopupTheme</item>

        <item name="android:windowBackground">@color/window_background</item>
        <item name="android:colorPrimaryDark">@color/primary_dark</item>
        <item name="android:colorPrimary">@color/primary</item>
        <item name="android:colorAccent">@color/accent</item>
        <item name="android:colorControlActivated">?android:attr/colorAccent</item>
        <item name="android:queryBackground">@color/menu_search_background</item>

        <item name="android:listDivider">@drawable/list_divider</item>

        <item name="android:windowActionBar">false</item>
        <item name="android:windowActionModeOverlay">true</item>
        <item name="android:windowNoTitle">true</item>

        <item name="android:windowSoftInputMode">stateUnspecified|adjustUnspecified</item>
        </style>
</resources>