I have a problem. The constructor of
QuickAction qa = new QuickAction(v);
require View v, but how I can recieve parent view in AppWidgetProvider? this I use for register click
PendingIntent actionPendingIntent = PendingIntent.getBroadcast(context, 0, active, 0);
remoteViews.setOnClickPendingIntent(R.id.imageButton1, actionPendingIntent);
next I try to recieve view to create 'from' my QuickAction
mView = mView.findViewById(R.layout.main);
qa = new QuickAction(mView);