diff options
| author | Dianne Hackborn <hackbod@google.com> | 2012-06-05 17:38:50 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2012-06-06 11:36:49 -0700 |
| commit | 636fd528f7ad51f565a390226d9f469f8c675ccf (patch) | |
| tree | 820e57c10017ba13c3858670a26d2dcde8a230ff /core/java/android/widget/RemoteViews.java | |
| parent | 1ad66b2f873496bcbe72e91d1978cf1b2633b3a4 (diff) | |
Docs (mostly): enumerate JELLY_BEAN target SDK changes.
Okay this isn't entirely docs. I have un-hidden the new permission
for binding to accessibility services; we were going to go out with
it hidden since it didn't go into factory ROM, but now that we are
doing other things we might as well expose it.
Also changed a log from E to W, since it is not an error.
Change-Id: I9226c95e3b63e12218fe41dc3f4290d9824a9e5c
Diffstat (limited to 'core/java/android/widget/RemoteViews.java')
| -rw-r--r-- | core/java/android/widget/RemoteViews.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/widget/RemoteViews.java b/core/java/android/widget/RemoteViews.java index 19857928a58a..ad4d7423fa10 100644 --- a/core/java/android/widget/RemoteViews.java +++ b/core/java/android/widget/RemoteViews.java @@ -492,7 +492,7 @@ public class RemoteViews implements Parcelable, Filter { // If the view is an AdapterView, setting a PendingIntent on click doesn't make much // sense, do they mean to set a PendingIntent template for the AdapterView's children? if (mIsWidgetCollectionChild) { - Log.e("RemoteViews", "Cannot setOnClickPendingIntent for collection item " + + Log.w("RemoteViews", "Cannot setOnClickPendingIntent for collection item " + "(id: " + viewId + ")"); ApplicationInfo appInfo = root.getContext().getApplicationInfo(); |
