summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorHyunyoung Song <hyunyoungs@google.com>2019-03-04 14:46:39 -0800
committerHyunyoung Song <hyunyoungs@google.com>2019-03-04 14:46:39 -0800
commit15f7de8332db88e1b11f2ee093d122264765ba0a (patch)
tree2246cb4b83380667742481721e5bda6e452244be /res/layout
parent0a13878b965a87e0dd0eb6a9659bd279038c1de4 (diff)
downloadandroid_packages_apps_Trebuchet-15f7de8332db88e1b11f2ee093d122264765ba0a.tar.gz
android_packages_apps_Trebuchet-15f7de8332db88e1b11f2ee093d122264765ba0a.tar.bz2
android_packages_apps_Trebuchet-15f7de8332db88e1b11f2ee093d122264765ba0a.zip
Drop target NPE due to wrong android:theme usage
Bug: 127345257 Change-Id: I2774644b304b26f56e380f75d17790d05744def1
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/snackbar.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/layout/snackbar.xml b/res/layout/snackbar.xml
index bca330842..b81894386 100644
--- a/res/layout/snackbar.xml
+++ b/res/layout/snackbar.xml
@@ -29,7 +29,7 @@
android:ellipsize="end"
android:textSize="@dimen/snackbar_max_text_size"
android:textColor="?android:attr/textColorPrimary"
- android:theme="@style/TextTitle"/>
+ style="@style/TextTitle"/>
<TextView
android:id="@+id/action"
android:layout_height="@dimen/snackbar_content_height"
@@ -42,6 +42,6 @@
android:textStyle="bold"
android:textSize="@dimen/snackbar_max_text_size"
android:textColor="?android:attr/colorAccent"
- android:theme="@style/TextTitle"
+ style="@style/TextTitle"
android:capitalize="sentences"/>
</merge> \ No newline at end of file