我有个问题。的构造函数

QuickAction qa = new QuickAction(v);


需要View v,但是如何在AppWidgetProvider中接收父视图?
我用来注册点击

PendingIntent actionPendingIntent = PendingIntent.getBroadcast(context, 0, active, 0);

     remoteViews.setOnClickPendingIntent(R.id.imageButton1, actionPendingIntent);


接下来,我尝试接收视图以从“快速操作”创建“

mView = mView.findViewById(R.layout.main);
      qa = new QuickAction(mView);

最佳答案

据我所知:QuickAction的视图不适用于RemoteView。也许您需要扭曲QuickAction xml的代码才能做到这一点。但是,如果您对Android中的自定义视图没有足够的了解,我绝对建议您不要浪费时间:)

09-26 17:53