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

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

Adding dialer assets, styles, and attributes for theming.

CR: Josh Guilfoyle
parent 9d34595d
Loading
Loading
Loading
Loading
+55 −0
Original line number Original line Diff line number Diff line
@@ -2759,6 +2759,50 @@
 visibility="public"
 visibility="public"
>
>
</field>
</field>
<field name="dialerDeleteButtonStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843426"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="dialerDialpadButtonStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843428"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="dialerInputStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843425"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="dialerScreenBackgroundStyle"
 type="int"
 transient="false"
 volatile="false"
 value="16843427"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="dialogIcon"
<field name="dialogIcon"
 type="int"
 type="int"
 transient="false"
 transient="false"
@@ -6521,6 +6565,17 @@
 visibility="public"
 visibility="public"
>
>
</field>
</field>
<field name="searchDialogTheme"
 type="int"
 transient="false"
 volatile="false"
 value="16843407"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="searchMode"
<field name="searchMode"
 type="int"
 type="int"
 transient="false"
 transient="false"
+24 −0
Original line number Original line 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_pressed="true"
        android:drawable="@drawable/btn_dial_pressed" />
    <item android:state_focused="true"
        android:drawable="@drawable/btn_dial_selected" />
    <item
        android:drawable="@drawable/btn_dial_normal" />
</selector>
+25 −0
Original line number Original line 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_pressed="true" 
        android:drawable="@drawable/btn_dial_delete_pressed" />
    <item android:state_focused="true"
        android:drawable="@drawable/btn_dial_delete_selected" />
    <item
        android:drawable="@drawable/btn_dial_delete_normal" />
</selector>
+960 B
Loading image diff...
+25 −0
Original line number Original line 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_pressed="true" 
        android:drawable="@drawable/btn_dial_delete_pressed" />
    <item android:state_focused="true"
        android:drawable="@drawable/btn_dial_delete_selected" />
    <item
        android:drawable="@drawable/btn_dial_delete_activated" />
</selector>
Loading