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

Commit bc77ed55 authored by Ed Carrigan's avatar Ed Carrigan Committed by Josh Guilfoyle
Browse files

Add support for theming the launcher.

Updated to support new attributes for theming the launcher.

CR: Josh Guilfoyle
parent 5ab5762a
Loading
Loading
Loading
Loading
+165 −0
Original line number Diff line number Diff line
@@ -1604,6 +1604,39 @@
 visibility="public"
>
</field>
<field name="allAppsGridViewStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843409"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="allAppsTextAppearance"
 type="int"
 transient="false"
 volatile="false"
 value="16843414"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="allAppsTextViewStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843413"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="allowClearUserData"
 type="int"
 transient="false"
@@ -2671,6 +2704,17 @@
 visibility="public"
>
</field>
<field name="deleteZoneStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843418"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="dependency"
 type="int"
 transient="false"
@@ -3694,6 +3738,17 @@
 visibility="public"
>
</field>
<field name="handleViewStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843408"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="hapticFeedbackEnabled"
 type="int"
 transient="false"
@@ -4992,6 +5047,39 @@
 visibility="public"
>
</field>
<field name="liveFolderButtonStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843417"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="liveFolderGridStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843415"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="liveFolderListStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843416"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="longClickable"
 type="int"
 transient="false"
@@ -8391,6 +8479,39 @@
 visibility="public"
>
</field>
<field name="workspaceStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843410"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="workspaceStyleLandscape"
 type="int"
 transient="false"
 volatile="false"
 value="16843411"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="workspaceStylePortrait"
 type="int"
 transient="false"
 volatile="false"
 value="16843412"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="writePermission"
 type="int"
 transient="false"
@@ -8513,6 +8634,17 @@
 visibility="public"
>
</field>
<field name="bright_text_dark_focused"
 type="int"
 transient="false"
 volatile="false"
 value="17170450"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="darker_gray"
 type="int"
 transient="false"
@@ -11658,6 +11790,39 @@
 visibility="public"
>
</field>
<field name="LauncherWorkspaceIcon"
 type="int"
 transient="false"
 volatile="false"
 value="16973916"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="LauncherWorkspaceIcon_Landscape"
 type="int"
 transient="false"
 volatile="false"
 value="16973918"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="LauncherWorkspaceIcon_Portrait"
 type="int"
 transient="false"
 volatile="false"
 value="16973917"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="MediaButton"
 type="int"
 transient="false"
+24 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 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.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_window_focused="true" android:state_focused="true" android:color="#000" />
    <item android:state_window_focused="false" android:state_focused="true" android:color="#FFF" />
    <item android:state_window_focused="false" android:color="#FFF" />
    <item android:state_selected="true" android:color="#000" />
    <item android:state_pressed="true" android:color="#000" />
    <item android:color="#FFF" />
</selector>
+859 B
Loading image diff...
+3.5 KiB
Loading image diff...
+651 B
Loading image diff...
Loading