Loading core/java/android/widget/RemoteViews.java +3 −1 Original line number Diff line number Diff line Loading @@ -814,7 +814,9 @@ public class RemoteViews implements Parcelable, Filter { // The PendingIntent template is stored in the view's tag. OnItemClickListener listener = (parent, view, position, id) -> { RemoteResponse response = findRemoteResponseTag(view); if (response != null) { response.handleViewInteraction(view, handler); } }; av.setOnItemClickListener(listener); av.setTag(pendingIntentTemplate); Loading Loading
core/java/android/widget/RemoteViews.java +3 −1 Original line number Diff line number Diff line Loading @@ -814,7 +814,9 @@ public class RemoteViews implements Parcelable, Filter { // The PendingIntent template is stored in the view's tag. OnItemClickListener listener = (parent, view, position, id) -> { RemoteResponse response = findRemoteResponseTag(view); if (response != null) { response.handleViewInteraction(view, handler); } }; av.setOnItemClickListener(listener); av.setTag(pendingIntentTemplate); Loading