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

Commit e2405a56 authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Make visible pressed state for action bar items

Bug 5132370

Change-Id: I22c1c5af5e0ea7cfc1a2d85e0be0bd48f0e63f5e
parent 91febe72
Loading
Loading
Loading
Loading
+158 B
Loading image diff...
+154 B
Loading image diff...
+163 B
Loading image diff...
+21 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 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"
          android:exitFadeDuration="@android:integer/config_mediumAnimTime">
    <item android:state_pressed="true" android:drawable="@drawable/list_pressed_holo_light"/>
    <item android:drawable="@android:color/transparent" />
</selector>
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
<resources>
    <style name="PeopleTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar">
        <item name="android:actionBarStyle">@style/ContactsActionBarStyle</item>
        <item name="android:actionBarItemBackground">@drawable/action_bar_item_background</item>
        <item name="android:actionBarTabStyle">@style/ContactsActionBarTabView</item>
        <item name="android:textColorPrimary">@color/primary_text_color</item>
        <item name="android:textColorSecondary">@color/secondary_text_color</item>
Loading