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

Commit 90c4833f authored by Patrick Scott's avatar Patrick Scott
Browse files

UI changes based on feedback from Jeff and Amar.

Bug: 2278206
parent 77f3d897
Loading
Loading
Loading
Loading
+3.43 KiB
Loading image diff...
+2.06 KiB
Loading image diff...
+22 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 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="false"
      android:drawable="@android:color/background_dark" />
  <item android:state_pressed="true"
      android:drawable="@*android:drawable/list_selector_background_pressed" />
</selector>
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_selected="true" android:state_window_focused="true"
    <item android:state_pressed="true" android:state_window_focused="true"
        android:drawable="@drawable/ic_clock_alarm_selected" />
    <item android:drawable="@drawable/ic_clock_alarm_on" />
</selector>
+2 −4
Original line number Diff line number Diff line
@@ -26,8 +26,6 @@
        android:background="@android:drawable/list_selector_background"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingTop="4dip"
        android:paddingBottom="4dip"
        android:orientation="horizontal">

        <ImageView
@@ -41,7 +39,7 @@
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:layout_gravity="center_vertical"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textColor="?android:attr/textColorPrimary"
            android:text="@string/add_alarm" />

@@ -69,7 +67,7 @@
            style="@style/ButtonStripLeft"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_menu_desk_clock"
            android:src="@drawable/ic_clock_strip_desk_clock"
            android:contentDescription="@string/desk_clock_button_description"/>

        <com.android.deskclock.DigitalClock
Loading