私のウィジェットにはどのように画像が1つありますか? ImageButtonだけのウィジェットですが、どこに行くのか分かりません。私は保留中のインテントなどについて知っていますが、何かが欠けていない限り、ここで助けにならないのです...私のonUpdateウィジェット内の画像を変更する
public void onUpdate(Context context,AppWidgetManager appWidgetManager,int[] appWidgetIds){
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.widget);
PendingIntent onPendingIntent = PendingIntent.getService(context, 0, new Intent(context, widgetService.class), 0);
remoteViews.setOnClickPendingIntent(R.id.ImageButton01, onPendingIntent);
appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);
}
を探して何だと思う、あなたは放送受信機のonReceiverでこれをやりたいです – urSus