diff options
| author | Selim Cinek <cinek@google.com> | 2016-07-20 20:41:58 -0700 |
|---|---|---|
| committer | Selim Cinek <cinek@google.com> | 2016-07-22 12:13:11 -0700 |
| commit | 981962e6ad04725ebbf1b728afde2bdc7706290f (patch) | |
| tree | fd5553a49ea2627df27231ec262e81b61dda6bcb /core/java/android/widget/RemoteViews.java | |
| parent | 506deb69a744fe0fa704eda588c3a263b3f8fc2c (diff) | |
Changed the appearance of fullscreen intent notifications again
Change-Id: I511356a8dc0fe253541c625fb7b43ed0c7bafaca
Fixes: 28269355
Diffstat (limited to 'core/java/android/widget/RemoteViews.java')
| -rw-r--r-- | core/java/android/widget/RemoteViews.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/java/android/widget/RemoteViews.java b/core/java/android/widget/RemoteViews.java index c33288bd568d..d0d233ebe975 100644 --- a/core/java/android/widget/RemoteViews.java +++ b/core/java/android/widget/RemoteViews.java @@ -2788,6 +2788,18 @@ public class RemoteViews implements Parcelable, Filter { } /** + * @hide + * Equivalent to calling {@link android.widget.TextView#setTextColor(ColorStateList)}. + * + * @param viewId The id of the view whose text color should change + * @param colors the text colors to set + */ + public void setTextColor(int viewId, @ColorInt ColorStateList colors) { + addAction(new ReflectionAction(viewId, "setTextColor", ReflectionAction.COLOR_STATE_LIST, + colors)); + } + + /** * Equivalent to calling {@link android.widget.AbsListView#setRemoteViewsAdapter(Intent)}. * * @param appWidgetId The id of the app widget which contains the specified view. (This |
