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

Commit 4d143d52 authored by Isaac Katzenelson's avatar Isaac Katzenelson Committed by Android (Google) Code Review
Browse files

Merge "Support for today's day of month in the today button"

parents df34a98e 4bd4a5cc
Loading
Loading
Loading
Loading
−317 B (565 B)
Loading image diff...
−355 B (481 B)
Loading image diff...
−436 B (719 B)
Loading image diff...
+26 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2012 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.
-->

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/today_icon_background"
        android:drawable="@drawable/ic_menu_today_holo_light"
        android:gravity="center" />
    <item
        android:id="@+id/today_icon_day"
        android:drawable="@drawable/ic_menu_today_holo_light"
        android:gravity="center"/>
</layer-list>
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
        android:id="@+id/action_today"
        android:alphabeticShortcut="t"
        android:title="@string/goto_today"
        android:icon="@drawable/ic_menu_today_holo_light"
        android:icon="@drawable/today_icon"
        android:showAsAction="withText|ifRoom" />
    <item
        android:id="@+id/action_create_event"
Loading