summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Lake <ilake@google.com>2017-07-11 13:12:20 -0700
committerIan Lake <ilake@google.com>2017-07-11 13:12:20 -0700
commitfe8959fae9b0972cbc15e965f564b0a029430e79 (patch)
tree077810ca5c0d073a61083b69705c5d41784c48c4
parentd46cf78f65a059ddbdf386befd82e7692133fa1e (diff)
downloadandroid_packages_apps_DeskClock-fe8959fae9b0972cbc15e965f564b0a029430e79.tar.gz
android_packages_apps_DeskClock-fe8959fae9b0972cbc15e965f564b0a029430e79.tar.bz2
android_packages_apps_DeskClock-fe8959fae9b0972cbc15e965f564b0a029430e79.zip
Update DeskClock to use Compat notif text styles
TextAppearance.AppCompat.Notification styles were moved to TextAppearance.Compat.Notification. Test: manual inspection BUG: 28983951 Change-Id: I26ee3ad7f59db8fcc841fe048d2bdeccb9143fbc
-rw-r--r--res/layout/chronometer_notif_content.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/layout/chronometer_notif_content.xml b/res/layout/chronometer_notif_content.xml
index c962a0e11..e460f4442 100644
--- a/res/layout/chronometer_notif_content.xml
+++ b/res/layout/chronometer_notif_content.xml
@@ -26,13 +26,13 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
- android:textAppearance="@style/TextAppearance.AppCompat.Notification.Title" />
+ android:textAppearance="@style/TextAppearance.Compat.Notification.Title" />
<TextView
android:id="@+id/state"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
- android:textAppearance="@style/TextAppearance.AppCompat.Notification" />
+ android:textAppearance="@style/TextAppearance.Compat.Notification" />
</LinearLayout>