task needs to be a new object for every button

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2020-01-09 14:54:00 +01:00
parent de269b2603
commit 4b073e9283
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7

View file

@ -152,10 +152,6 @@ public class NotificationListAdapter extends RecyclerView.Adapter<NotificationLi
MaterialButton button;
Resources resources = notificationsActivity.getResources();
NotificationExecuteActionTask task = new NotificationExecuteActionTask(client,
holder,
notification,
notificationsActivity);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
params.setMargins(20, 0, 20, 0);
@ -188,7 +184,11 @@ public class NotificationListAdapter extends RecyclerView.Adapter<NotificationLi
button.setOnClickListener(v -> {
setButtonEnabled(holder, false);
task.execute(action);
new NotificationExecuteActionTask(client,
holder,
notification,
notificationsActivity)
.execute(action);
});
holder.buttons.addView(button);