package app.fedilab.android.drawers; /* Copyright 2017 Thomas Schneider * * This file is a part of Fedilab * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * Public License for more details. * * You should have received a copy of the GNU General Public License along with Fedilab; if not, * see . */ import android.annotation.SuppressLint; import android.app.Activity; import android.content.ClipData; import android.content.ClipboardManager; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.graphics.PorterDuff; import android.graphics.Typeface; import android.graphics.drawable.Drawable; import android.os.Build; import android.os.Bundle; import android.os.CountDownTimer; import android.os.Handler; import android.text.Html; import android.text.SpannableString; import android.text.Spanned; import android.text.method.LinkMovementMethod; import android.text.style.ForegroundColorSpan; import android.util.TypedValue; import android.view.LayoutInflater; import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.CheckBox; import android.widget.EditText; import android.widget.FrameLayout; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.ProgressBar; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.RelativeLayout; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.widget.PopupMenu; import androidx.constraintlayout.widget.ConstraintLayout; import androidx.core.app.ActivityOptionsCompat; import androidx.core.content.ContextCompat; import androidx.core.graphics.drawable.DrawableCompat; import androidx.preference.PreferenceManager; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import com.bumptech.glide.Glide; import com.varunest.sparkbutton.SparkButton; import org.jetbrains.annotations.NotNull; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Objects; import java.util.Timer; import java.util.TimerTask; import java.util.regex.Matcher; import java.util.regex.Pattern; import app.fedilab.android.R; import app.fedilab.android.activities.AccountReportActivity; import app.fedilab.android.activities.BaseActivity; import app.fedilab.android.activities.CustomSharingActivity; import app.fedilab.android.activities.MainActivity; import app.fedilab.android.activities.ShowAccountActivity; import app.fedilab.android.activities.ShowConversationActivity; import app.fedilab.android.activities.SlideMediaActivity; import app.fedilab.android.activities.TootActivity; import app.fedilab.android.activities.TootInfoActivity; import app.fedilab.android.asynctasks.ManagePollAsyncTask; import app.fedilab.android.asynctasks.PostActionAsyncTask; import app.fedilab.android.asynctasks.PostNotificationsAsyncTask; import app.fedilab.android.asynctasks.RetrieveFeedsAsyncTask; import app.fedilab.android.asynctasks.UpdateAccountInfoAsyncTask; import app.fedilab.android.client.API; import app.fedilab.android.client.APIResponse; import app.fedilab.android.client.Entities.Account; import app.fedilab.android.client.Entities.Attachment; import app.fedilab.android.client.Entities.Emojis; import app.fedilab.android.client.Entities.Error; import app.fedilab.android.client.Entities.Notification; import app.fedilab.android.client.Entities.Poll; import app.fedilab.android.client.Entities.PollOptions; import app.fedilab.android.client.Entities.Status; import app.fedilab.android.helper.CrossActions; import app.fedilab.android.helper.CustomTextView; import app.fedilab.android.helper.Helper; import app.fedilab.android.helper.ThemeHelper; import app.fedilab.android.interfaces.OnPollInterface; import app.fedilab.android.interfaces.OnPostActionInterface; import app.fedilab.android.interfaces.OnPostNotificationsActionInterface; import app.fedilab.android.interfaces.OnRetrieveEmojiAccountInterface; import app.fedilab.android.interfaces.OnRetrieveEmojiInterface; import app.fedilab.android.interfaces.OnRetrieveImageInterface; import es.dmoral.toasty.Toasty; import static android.content.Context.MODE_PRIVATE; import static app.fedilab.android.activities.BaseMainActivity.social; import static app.fedilab.android.helper.Helper.makeEmojis; /** * Created by Thomas on 24/04/2017. * Adapter for Status */ public abstract class BaseNotificationsListAdapter extends RecyclerView.Adapter implements OnPostActionInterface, OnPostNotificationsActionInterface, OnRetrieveEmojiInterface, OnRetrieveEmojiAccountInterface, OnPollInterface, OnRetrieveImageInterface { private final Object lock = new Object(); protected Context context; private final List notifications; private final BaseNotificationsListAdapter notificationsListAdapter; private final int behaviorWithAttachments; private final boolean isOnWifi; private NotificationsListAdapter.ViewHolder holder; private int style; private RecyclerView mRecyclerView; private final Runnable updateAnimatedEmoji = new Runnable() { @Override public void run() { synchronized (lock) { if (mRecyclerView != null && (mRecyclerView.getLayoutManager()) != null) { int firstPosition = ((LinearLayoutManager) mRecyclerView.getLayoutManager()).findFirstCompletelyVisibleItemPosition(); int lastPosition = ((LinearLayoutManager) mRecyclerView.getLayoutManager()).findLastCompletelyVisibleItemPosition(); for (int i = firstPosition; i <= lastPosition; i++) { if (mRecyclerView.findViewHolderForAdapterPosition(i) != null && mRecyclerView.findViewHolderForAdapterPosition(i) instanceof ViewHolder) { ((ViewHolder) Objects.requireNonNull(mRecyclerView.findViewHolderForAdapterPosition(i))).updateAnimatedEmoji(); } } } } } }; private final Handler mHandler = new Handler(); public BaseNotificationsListAdapter(boolean isOnWifi, int behaviorWithAttachments, List notifications) { this.notifications = notifications; notificationsListAdapter = this; this.isOnWifi = isOnWifi; this.behaviorWithAttachments = behaviorWithAttachments; } @Override public void onAttachedToRecyclerView(@NotNull RecyclerView recyclerView) { super.onAttachedToRecyclerView(recyclerView); mRecyclerView = recyclerView; } @Override public void onDetachedFromRecyclerView(@NotNull RecyclerView recyclerView) { super.onDetachedFromRecyclerView(recyclerView); mRecyclerView = null; } @NonNull @Override public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { context = parent.getContext(); LayoutInflater layoutInflater = LayoutInflater.from(this.context); return new ViewHolder(layoutInflater.inflate(R.layout.drawer_notification, parent, false)); } @SuppressLint("ClickableViewAccessibility") @Override public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) { holder = (NotificationsListAdapter.ViewHolder) viewHolder; context = holder.status_document_container.getContext(); holder.startUpdateTimer(); final Notification notification = notifications.get(position); final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE); int iconSizePercent = sharedpreferences.getInt(Helper.SET_ICON_SIZE, 130); int textSizePercent = sharedpreferences.getInt(Helper.SET_TEXT_SIZE, 110); final float scale = context.getResources().getDisplayMetrics().density; String type = notification.getType(); String typeString = ""; int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK); boolean expand_cw = sharedpreferences.getBoolean(Helper.SET_EXPAND_CW, false); boolean confirmFav = sharedpreferences.getBoolean(Helper.SET_NOTIF_VALIDATION_FAV, false); boolean confirmBoost = sharedpreferences.getBoolean(Helper.SET_NOTIF_VALIDATION, true); boolean hide_notification_delete = sharedpreferences.getBoolean(Helper.SET_HIDE_DELETE_BUTTON_ON_TAB, false); SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); int iconColor = prefs.getInt("theme_icons_color", -1); if (iconColor == -1) { iconColor = ThemeHelper.getAttColor(context, R.attr.iconColor); } Helper.changeDrawableColor(context, R.drawable.ic_audio_wave, iconColor); Helper.changeDrawableColor(context, R.drawable.ic_photo, R.color.cyanea_accent_reference); Helper.changeDrawableColor(context, R.drawable.ic_remove_red_eye, R.color.cyanea_accent_reference); Helper.changeDrawableColor(context, R.drawable.ic_fetch_more, R.color.cyanea_accent_reference); Helper.changeDrawableColor(context, R.drawable.ic_fetch_more, iconColor); Helper.changeDrawableColor(context, holder.status_reply, iconColor); Helper.changeDrawableColor(context, R.drawable.ic_conversation, iconColor); Helper.changeDrawableColor(context, R.drawable.ic_more_horiz, iconColor); Helper.changeDrawableColor(context, holder.status_more, iconColor); Helper.changeDrawableColor(context, holder.status_privacy, iconColor); Helper.changeDrawableColor(context, R.drawable.ic_repeat, iconColor); Helper.changeDrawableColor(context, R.drawable.ic_plus_one, iconColor); Helper.changeDrawableColor(context, R.drawable.ic_pin_drop, iconColor); holder.status_reply_count.setTextColor(iconColor); holder.status_favorite_count.setTextColor(iconColor); holder.status_reblog_count.setTextColor(iconColor); if (theme == Helper.THEME_DARK) { style = R.style.DialogDark; } else if (theme == Helper.THEME_BLACK) { style = R.style.DialogBlack; } else { style = R.style.Dialog; } int theme_text_color = prefs.getInt("theme_text_color", -1); if (holder.notification_status_content != null && theme_text_color != -1) { holder.notification_status_content.setTextColor(theme_text_color); holder.status_spoiler.setTextColor(theme_text_color); } int reblogColor = prefs.getInt("theme_statuses_color", -1); if (holder.main_linear_container != null && reblogColor != -1) { holder.main_linear_container.setBackgroundColor(reblogColor); } if (hide_notification_delete) holder.notification_delete.setVisibility(View.GONE); Drawable imgH = null; holder.status_date.setVisibility(View.VISIBLE); holder.main_container_trans.setAlpha(.3f); switch (type) { case "mention": holder.status_action_container.setVisibility(View.VISIBLE); if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0) typeString = String.format("%s %s", notification.getAccount().getDisplay_name(), context.getString(R.string.notif_mention)); else typeString = String.format("@%s %s", notification.getAccount().getUsername(), context.getString(R.string.notif_mention)); imgH = ContextCompat.getDrawable(context, R.drawable.ic_chat_bubble_outline); if (notification.getStatus() != null && notification.getStatus().getVisibility().equals("direct")) { holder.main_container_trans.setVisibility(View.GONE); } else { holder.main_container_trans.setVisibility(View.VISIBLE); holder.main_container_trans.setAlpha(.1f); } holder.status_more.setVisibility(View.VISIBLE); break; case "poll": holder.status_action_container.setVisibility(View.GONE); typeString = context.getString(R.string.notif_poll); imgH = ContextCompat.getDrawable(context, R.drawable.ic_view_list_poll_notif); holder.main_container_trans.setVisibility(View.VISIBLE); holder.status_more.setVisibility(View.GONE); break; case "reblog": holder.status_action_container.setVisibility(View.GONE); if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0) typeString = String.format("%s %s", notification.getAccount().getDisplay_name(), context.getString(R.string.notif_reblog)); else typeString = String.format("@%s %s", notification.getAccount().getUsername(), context.getString(R.string.notif_reblog)); imgH = ContextCompat.getDrawable(context, R.drawable.ic_repeat_head); holder.main_container_trans.setVisibility(View.VISIBLE); holder.status_more.setVisibility(View.GONE); break; case "favourite": holder.status_action_container.setVisibility(View.GONE); if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0) typeString = String.format("%s %s", notification.getAccount().getDisplay_name(), context.getString(R.string.notif_favourite)); else typeString = String.format("@%s %s", notification.getAccount().getUsername(), context.getString(R.string.notif_favourite)); imgH = ContextCompat.getDrawable(context, R.drawable.ic_star_border_header); holder.main_container_trans.setVisibility(View.VISIBLE); holder.status_more.setVisibility(View.GONE); break; case "follow_request": holder.status_action_container.setVisibility(View.GONE); holder.status_date.setVisibility(View.GONE); if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0) typeString = String.format("%s %s", notification.getAccount().getDisplay_name(), context.getString(R.string.notif_follow_request)); else typeString = String.format("@%s %s", notification.getAccount().getUsername(), context.getString(R.string.notif_follow_request)); imgH = ContextCompat.getDrawable(context, R.drawable.ic_follow_notif_header); holder.main_container_trans.setVisibility(View.GONE); break; case "follow": holder.status_action_container.setVisibility(View.GONE); holder.status_date.setVisibility(View.GONE); if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0) typeString = String.format("%s %s", notification.getAccount().getDisplay_name(), context.getString(R.string.notif_follow)); else typeString = String.format("@%s %s", notification.getAccount().getUsername(), context.getString(R.string.notif_follow)); imgH = ContextCompat.getDrawable(context, R.drawable.ic_follow_notif_header); holder.main_container_trans.setVisibility(View.GONE); break; } if (notification.getAccount().getDisplayNameSpan() == null) { holder.notification_type.setText(typeString); notification.getAccount().setStored_displayname(notification.getAccount().getDisplay_name()); } else { holder.notification_type.setText(typeString, TextView.BufferType.SPANNABLE); makeEmojis(context, holder.notification_type, notification.getAccount().getDisplayNameSpan(), notification.getAccount().getEmojis()); } if (imgH != null) { DrawableCompat.setTint(imgH, ContextCompat.getColor(context, R.color.cyanea_accent)); holder.notification_type.setCompoundDrawablePadding((int) Helper.convertDpToPixel(5, context)); imgH.setBounds(0, 0, (int) (20 * iconSizePercent / 100 * scale + 0.5f), (int) (20 * iconSizePercent / 100 * scale + 0.5f)); } holder.notification_type.setCompoundDrawables(imgH, null, null, null); holder.status_privacy.getLayoutParams().height = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); holder.status_privacy.getLayoutParams().width = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); holder.status_reply.getLayoutParams().height = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); holder.status_reply.getLayoutParams().width = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); holder.status_spoiler.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); holder.notification_status_content.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); holder.notification_type.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); holder.status_date.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (12 * textSizePercent) / 100); int theme_text_header_1_line = prefs.getInt("theme_text_header_1_line", -1); if (theme_text_header_1_line == -1) { theme_text_header_1_line = ThemeHelper.getAttColor(context, R.attr.textColor); } holder.notification_type.setTextColor(theme_text_header_1_line); holder.spark_button_fav.pressOnTouch(false); holder.spark_button_reblog.pressOnTouch(false); holder.spark_button_fav.setActiveImageTint(R.color.marked_icon); holder.spark_button_reblog.setActiveImageTint(R.color.boost_icon); holder.spark_button_fav.setDisableCircle(true); holder.spark_button_reblog.setDisableCircle(true); holder.spark_button_fav.setInActiveImageTintColor(iconColor); holder.spark_button_reblog.setInActiveImageTintColor(iconColor); holder.spark_button_fav.setColors(R.color.marked_icon, R.color.marked_icon); holder.spark_button_fav.setImageSize((int) (20 * iconSizePercent / 100 * scale + 0.5f)); holder.spark_button_fav.setMinimumWidth((int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100 * scale + 0.5f), context)); holder.spark_button_reblog.setColors(R.color.boost_icon, R.color.boost_icon); holder.spark_button_reblog.setImageSize((int) (20 * iconSizePercent / 100 * scale + 0.5f)); holder.spark_button_reblog.setMinimumWidth((int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100 * scale + 0.5f), context)); final Status status = notification.getStatus(); if (status != null) { if (status.getMedia_attachments() == null || status.getMedia_attachments().size() < 1) holder.status_document_container.setVisibility(View.GONE); else holder.status_document_container.setVisibility(View.VISIBLE); holder.status_privacy.setOnClickListener(view -> { String v = status.getVisibility(); holder.status_privacy.setContentDescription(context.getString(R.string.toot_visibility_tilte) + ": " + v); }); holder.notification_status_content.setText(status.getContentSpan(), TextView.BufferType.SPANNABLE); makeEmojis(context, holder.notification_status_content, status.getContentSpan(), status.getEmojis()); holder.status_spoiler.setText(status.getContentSpanCW(), TextView.BufferType.SPANNABLE); holder.status_spoiler.setMovementMethod(LinkMovementMethod.getInstance()); holder.notification_status_content.setMovementMethod(LinkMovementMethod.getInstance()); if (status.getReplies_count() > 0) holder.status_reply_count.setText(String.valueOf(status.getReplies_count())); else holder.status_reply_count.setText(""); if (status.getFavourites_count() > 0) holder.status_favorite_count.setText(String.valueOf(status.getFavourites_count())); else holder.status_favorite_count.setText(""); if (status.getReblogs_count() > 0) holder.status_reblog_count.setText(String.valueOf(status.getReblogs_count())); else holder.status_reblog_count.setText(""); holder.status_date.setText(Helper.dateDiff(context, status.getCreated_at())); Helper.absoluteDateTimeReveal(context, holder.status_date, status.getCreated_at()); holder.status_mention_spoiler.setText(Helper.makeMentionsClick(context, status.getMentions()), TextView.BufferType.SPANNABLE); holder.status_mention_spoiler.setMovementMethod(LinkMovementMethod.getInstance()); //Adds attachment -> disabled, to enable them uncomment the line below //loadAttachments(status, holder); holder.notification_status_container.setVisibility(View.VISIBLE); holder.card_status_container.setOnClickListener(v -> { Intent intent = new Intent(context, ShowConversationActivity.class); Bundle b = new Bundle(); b.putParcelable("status", status); intent.putExtras(b); context.startActivity(intent); }); holder.notification_status_content.setOnClickListener(v -> { Intent intent = new Intent(context, ShowConversationActivity.class); Bundle b = new Bundle(); b.putParcelable("status", status); intent.putExtras(b); context.startActivity(intent); }); holder.status_action_container.setVisibility(View.VISIBLE); if (!status.isFavAnimated()) { holder.spark_button_fav.setChecked(status.isFavourited() || (status.getReblog() != null && status.getReblog().isFavourited())); } else { status.setFavAnimated(false); holder.spark_button_fav.setChecked(true); holder.spark_button_fav.setAnimationSpeed(1.0f); holder.spark_button_fav.playAnimation(); } if (!status.isBoostAnimated()) { holder.spark_button_reblog.setChecked(status.isReblogged() || (status.getReblog() != null && status.getReblog().isReblogged())); } else { status.setBoostAnimated(false); holder.spark_button_reblog.setChecked(true); holder.spark_button_reblog.setAnimationSpeed(1.0f); holder.spark_button_reblog.playAnimation(); } if (status.getReblog() == null) { if (status.getSpoiler_text() != null && status.getSpoiler_text().trim().length() > 0) { holder.status_spoiler_container.setVisibility(View.VISIBLE); if (!status.isSpoilerShown() && !expand_cw) { holder.notification_status_container.setVisibility(View.GONE); holder.status_spoiler_mention_container.setVisibility(View.VISIBLE); holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler)); } else { holder.notification_status_container.setVisibility(View.VISIBLE); holder.status_spoiler_mention_container.setVisibility(View.GONE); holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler_less)); } } else { holder.status_spoiler_container.setVisibility(View.GONE); holder.status_spoiler_mention_container.setVisibility(View.GONE); holder.notification_status_container.setVisibility(View.VISIBLE); } } else { if (status.getReblog().getSpoiler_text() != null && status.getReblog().getSpoiler_text().trim().length() > 0) { holder.status_spoiler_container.setVisibility(View.VISIBLE); if (!status.isSpoilerShown() && !expand_cw) { holder.notification_status_container.setVisibility(View.GONE); holder.status_spoiler_mention_container.setVisibility(View.VISIBLE); holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler)); } else { holder.notification_status_container.setVisibility(View.VISIBLE); holder.status_spoiler_mention_container.setVisibility(View.GONE); holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler_less)); } } else { holder.status_spoiler_container.setVisibility(View.GONE); holder.status_spoiler_mention_container.setVisibility(View.GONE); holder.notification_status_container.setVisibility(View.VISIBLE); } } if (type.equals("favourite") || type.equals("reblog")) { holder.status_document_container.setVisibility(View.GONE); holder.status_show_more.setVisibility(View.GONE); } else { if (status.getReblog() == null) { if (status.getMedia_attachments() == null || status.getMedia_attachments().size() < 1) { holder.status_document_container.setVisibility(View.GONE); holder.status_show_more.setVisibility(View.GONE); } else { //If medias are loaded without any conditions or if device is on wifi if (!status.isSensitive() && (behaviorWithAttachments == Helper.ATTACHMENT_ALWAYS || (behaviorWithAttachments == Helper.ATTACHMENT_WIFI && isOnWifi))) { loadAttachments(notification, holder); holder.status_show_more.setVisibility(View.GONE); status.setAttachmentShown(true); } else { //Text depending if toots is sensitive or not String textShowMore = (status.isSensitive()) ? context.getString(R.string.load_sensitive_attachment) : context.getString(R.string.load_attachment); holder.status_show_more.setText(textShowMore); if (!status.isAttachmentShown()) { holder.status_show_more.setVisibility(View.VISIBLE); holder.status_document_container.setVisibility(View.GONE); } else { loadAttachments(notification, holder); } } } } } if (social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON) { holder.rated.setVisibility(View.GONE); holder.poll_container.setVisibility(View.GONE); holder.multiple_choice.setVisibility(View.GONE); holder.single_choice.setVisibility(View.GONE); holder.submit_vote.setVisibility(View.GONE); if (status.getPoll() != null && status.getPoll().getOptionsList() != null) { Poll poll = status.getPoll(); if (poll.isVoted() || poll.isExpired()) { holder.rated.setVisibility(View.VISIBLE); int greaterValue = 0; for (PollOptions pollOption : status.getPoll().getOptionsList()) { if (pollOption.getVotes_count() > greaterValue) greaterValue = pollOption.getVotes_count(); } LayoutInflater inflater = ((Activity) context).getLayoutInflater(); holder.rated.removeAllViews(); List ownvotes = poll.getOwn_votes(); int j = 0; if (poll.getOptionsList() != null) { for (PollOptions pollOption : poll.getOptionsList()) { View item = inflater.inflate(R.layout.layout_poll_item, new LinearLayout(context), false); double value = ((double) (pollOption.getVotes_count() * 100) / (double) poll.getVoters_count()); TextView poll_item_percent = item.findViewById(R.id.poll_item_percent); TextView poll_item_text = item.findViewById(R.id.poll_item_text); ProgressBar poll_item_value = item.findViewById(R.id.poll_item_value); poll_item_percent.setText(String.format("%s %%", (int) value)); poll_item_text.setText(pollOption.getTitle(), TextView.BufferType.SPANNABLE); makeEmojis(context, poll_item_text, pollOption.getTitleSpan(), poll.getEmojis()); poll_item_value.setProgress((int) value); holder.rated.addView(item); if (pollOption.getVotes_count() == greaterValue) { poll_item_percent.setTypeface(null, Typeface.BOLD); poll_item_text.setTypeface(null, Typeface.BOLD); } if (ownvotes != null && ownvotes.contains(j)) { Drawable img = ContextCompat.getDrawable(context, R.drawable.ic_check_poll); assert img != null; img.setColorFilter(ContextCompat.getColor(context, R.color.cyanea_accent_reference), PorterDuff.Mode.SRC_IN); img.setBounds(0, 0, (int) (20 * scale + 0.5f), (int) (20 * scale + 0.5f)); poll_item_text.setCompoundDrawables(null, null, img, null); } j++; } } } else { if (poll.isMultiple()) { if ((holder.multiple_choice).getChildCount() > 0) (holder.multiple_choice).removeAllViews(); for (PollOptions pollOption : poll.getOptionsList()) { CheckBox cb = new CheckBox(context); cb.setText(pollOption.getTitle()); makeEmojis(context, cb, pollOption.getTitleSpan(), poll.getEmojis()); holder.multiple_choice.addView(cb); } holder.multiple_choice.setVisibility(View.VISIBLE); } else { if ((holder.radio_group).getChildCount() > 0) (holder.radio_group).removeAllViews(); for (PollOptions pollOption : poll.getOptionsList()) { RadioButton rb = new RadioButton(context); rb.setText(pollOption.getTitle()); makeEmojis(context, rb, pollOption.getTitleSpan(), poll.getEmojis()); holder.radio_group.addView(rb); } holder.single_choice.setVisibility(View.VISIBLE); } holder.submit_vote.setVisibility(View.VISIBLE); holder.submit_vote.setOnClickListener(v -> { int[] choice; if (poll.isMultiple()) { ArrayList choices = new ArrayList<>(); int choicesCount = holder.multiple_choice.getChildCount(); for (int i = 0; i < choicesCount; i++) { if (holder.multiple_choice.getChildAt(i) != null && holder.multiple_choice.getChildAt(i) instanceof CheckBox) { if (((CheckBox) holder.multiple_choice.getChildAt(i)).isChecked()) { choices.add(i); } } } choice = new int[choices.size()]; Iterator iterator = choices.iterator(); for (int i = 0; i < choice.length; i++) { choice[i] = iterator.next(); } if (choice.length == 0) return; } else { choice = new int[1]; choice[0] = -1; int choicesCount = holder.radio_group.getChildCount(); for (int i = 0; i < choicesCount; i++) { if (holder.radio_group.getChildAt(i) != null && holder.radio_group.getChildAt(i) instanceof RadioButton) { if (((RadioButton) holder.radio_group.getChildAt(i)).isChecked()) { choice[0] = i; } } } if (choice[0] == -1) return; } new ManagePollAsyncTask(context, ManagePollAsyncTask.type_s.SUBMIT, status, choice, BaseNotificationsListAdapter.this); }); } holder.refresh_poll.setOnClickListener(v -> new ManagePollAsyncTask(context, ManagePollAsyncTask.type_s.REFRESH, status, null, BaseNotificationsListAdapter.this)); holder.poll_container.setVisibility(View.VISIBLE); holder.number_votes.setText(context.getResources().getQuantityString(R.plurals.number_of_voters, status.getPoll().getVoters_count(), status.getPoll().getVoters_count())); if (poll.isExpired()) { holder.remaining_time.setText(context.getString(R.string.poll_finish_at, Helper.dateToStringPoll(poll.getExpires_at()))); } else { holder.remaining_time.setText(context.getString(R.string.poll_finish_in, Helper.dateDiffPoll(context, poll.getExpires_at()))); } } else { holder.poll_container.setVisibility(View.GONE); } } holder.spark_button_fav.setOnClickListener(v -> { if (!status.isFavourited() && confirmFav) status.setFavAnimated(true); if (!status.isFavourited() && !confirmFav) { status.setFavAnimated(true); notifyNotificationChanged(notification); } CrossActions.doCrossAction(context, null, status, null, status.isFavourited() ? API.StatusAction.UNFAVOURITE : API.StatusAction.FAVOURITE, notificationsListAdapter, BaseNotificationsListAdapter.this, true); }); holder.spark_button_reblog.setOnClickListener(v -> { if (!status.isReblogged() && confirmBoost) status.setBoostAnimated(true); if (!status.isReblogged() && !confirmBoost) { status.setBoostAnimated(true); notifyNotificationChanged(notification); } CrossActions.doCrossAction(context, null, status, null, status.isReblogged() ? API.StatusAction.UNREBLOG : API.StatusAction.REBLOG, notificationsListAdapter, BaseNotificationsListAdapter.this, true); }); //Spoiler opens holder.status_spoiler_button.setOnClickListener(v -> { notification.getStatus().setSpoilerShown(!status.isSpoilerShown()); notifyNotificationChanged(notification); }); switch (status.getVisibility()) { case "public": holder.status_privacy.setImageResource(R.drawable.ic_public); break; case "unlisted": holder.status_privacy.setImageResource(R.drawable.ic_lock_open); break; case "private": holder.status_privacy.setImageResource(R.drawable.ic_lock_outline); break; case "direct": holder.status_privacy.setImageResource(R.drawable.ic_mail_outline); break; } switch (status.getVisibility()) { case "direct": case "private": holder.status_reblog_count.setVisibility(View.GONE); holder.spark_button_reblog.setVisibility(View.GONE); break; case "public": case "unlisted": holder.status_reblog_count.setVisibility(View.VISIBLE); holder.spark_button_reblog.setVisibility(View.VISIBLE); break; } holder.status_show_more.setOnClickListener(v -> { notification.getStatus().setAttachmentShown(true); notifyNotificationChanged(notification); final int timeout = sharedpreferences.getInt(Helper.SET_NSFW_TIMEOUT, 5); if (timeout > 0) { new CountDownTimer((timeout * 1000), 1000) { public void onTick(long millisUntilFinished) { } public void onFinish() { notification.getStatus().setAttachmentShown(false); notifyNotificationChanged(notification); } }.start(); } }); holder.status_reply.setOnClickListener(v -> CrossActions.doCrossReply(context, status, RetrieveFeedsAsyncTask.Type.LOCAL, true)); if (!status.getVisibility().equals("direct")) holder.spark_button_fav.setOnLongClickListener(view -> { CrossActions.doCrossAction(context, null, status, null, status.isFavourited() ? API.StatusAction.UNFAVOURITE : API.StatusAction.FAVOURITE, notificationsListAdapter, BaseNotificationsListAdapter.this, false); return true; }); if (!status.getVisibility().equals("direct")) holder.status_reply.setOnLongClickListener(view -> { CrossActions.doCrossReply(context, status, RetrieveFeedsAsyncTask.Type.LOCAL, false); return true; }); if (!status.getVisibility().equals("direct")) holder.spark_button_reblog.setOnLongClickListener(view -> { CrossActions.doCrossAction(context, null, status, null, status.isReblogged() ? API.StatusAction.UNREBLOG : API.StatusAction.REBLOG, notificationsListAdapter, BaseNotificationsListAdapter.this, false); return true; }); } else { holder.notification_status_container.setVisibility(View.GONE); holder.status_spoiler_container.setVisibility(View.GONE); holder.status_spoiler_mention_container.setVisibility(View.GONE); holder.card_status_container.setOnClickListener(null); holder.poll_container.setVisibility(View.GONE); } holder.notification_account_profile.setOnClickListener(v -> { Intent intent = new Intent(context, ShowAccountActivity.class); Bundle b = new Bundle(); notification.getAccount().setDisplay_name(notification.getAccount().getStored_displayname()); b.putParcelable("account", notification.getAccount()); intent.putExtras(b); context.startActivity(intent); }); holder.notification_delete.setOnClickListener(v -> displayConfirmationNotificationDialog(notification)); if (notification.getAccount() != null) { SpannableString wordtoSpan = new SpannableString("@" + notification.getAccount().getAcct()); Pattern hashAcct = Pattern.compile("(@" + notification.getAccount().getAcct() + ")"); int theme_text_header_2_line = prefs.getInt("theme_text_header_2_line", -1); if (theme_text_header_2_line == -1) { theme_text_header_2_line = ThemeHelper.getAttColor(context, R.attr.textHeader); } Matcher matcherAcct = hashAcct.matcher(wordtoSpan); while (matcherAcct.find()) { int matchStart = matcherAcct.start(1); int matchEnd = matcherAcct.end(); if (wordtoSpan.length() >= matchEnd && matchStart < matchEnd) { wordtoSpan.setSpan(new ForegroundColorSpan(theme_text_header_2_line), matchStart, matchEnd, Spanned.SPAN_INCLUSIVE_EXCLUSIVE); } } holder.notification_account_username.setText(wordtoSpan); } final String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null); final View attached = holder.status_more; holder.status_more.setOnClickListener(v -> { PopupMenu popup = new PopupMenu(context, attached); assert status != null; final boolean isOwner = status.getReblog() != null ? status.getReblog().getAccount().getId().equals(userId) : status.getAccount().getId().equals(userId); popup.getMenuInflater() .inflate(R.menu.option_toot, popup.getMenu()); popup.getMenu().findItem(R.id.action_timed_mute).setVisible(notification.getType().equals("mention")); if (status.getVisibility().equals("private") || status.getVisibility().equals("direct")) { popup.getMenu().findItem(R.id.action_mention).setVisible(false); } if (popup.getMenu().findItem(R.id.action_redraft) != null) popup.getMenu().findItem(R.id.action_redraft).setVisible(false); if (popup.getMenu().findItem(R.id.action_translate) != null) popup.getMenu().findItem(R.id.action_translate).setVisible(false); final String[] stringArrayConf; if (isOwner) { popup.getMenu().findItem(R.id.action_block).setVisible(false); popup.getMenu().findItem(R.id.action_mute).setVisible(false); popup.getMenu().findItem(R.id.action_report).setVisible(false); stringArrayConf = context.getResources().getStringArray(R.array.more_action_owner_confirm); if (social != UpdateAccountInfoAsyncTask.SOCIAL.MASTODON && social != UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) { popup.getMenu().findItem(R.id.action_stats).setVisible(false); } } else { popup.getMenu().findItem(R.id.action_stats).setVisible(false); popup.getMenu().findItem(R.id.action_remove).setVisible(false); stringArrayConf = context.getResources().getStringArray(R.array.more_action_confirm); } if (status.getAccount().getAcct().split("@").length < 2) popup.getMenu().findItem(R.id.action_block_domain).setVisible(false); if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.GNU || MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.FRIENDICA) { popup.getMenu().findItem(R.id.action_info).setVisible(false); popup.getMenu().findItem(R.id.action_report).setVisible(false); popup.getMenu().findItem(R.id.action_block_domain).setVisible(false); popup.getMenu().findItem(R.id.action_mute_conversation).setVisible(false); } if (MainActivity.social != UpdateAccountInfoAsyncTask.SOCIAL.MASTODON) { popup.getMenu().findItem(R.id.action_admin).setVisible(false); } else { boolean display_admin_statuses = sharedpreferences.getBoolean(Helper.SET_DISPLAY_ADMIN_STATUSES + userId + Helper.getLiveInstance(context), false); if (!display_admin_statuses) { popup.getMenu().findItem(R.id.action_admin).setVisible(false); } } if (status.isMuted()) popup.getMenu().findItem(R.id.action_mute_conversation).setTitle(R.string.unmute_conversation); else popup.getMenu().findItem(R.id.action_mute_conversation).setTitle(R.string.mute_conversation); boolean custom_sharing = sharedpreferences.getBoolean(Helper.SET_CUSTOM_SHARING, false); if (custom_sharing && status.getVisibility().equals("public")) popup.getMenu().findItem(R.id.action_custom_sharing).setVisible(true); popup.setOnMenuItemClickListener(item -> { AlertDialog.Builder builderInner; final API.StatusAction doAction; int itemId = item.getItemId(); if (itemId == R.id.action_remove) { builderInner = new AlertDialog.Builder(context, style); builderInner.setTitle(stringArrayConf[0]); doAction = API.StatusAction.UNSTATUS; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) builderInner.setMessage(Html.fromHtml(status.getContent(), Html.FROM_HTML_MODE_LEGACY)); else builderInner.setMessage(Html.fromHtml(status.getContent())); } else if (itemId == R.id.action_mute) { builderInner = new AlertDialog.Builder(context, style); builderInner.setTitle(stringArrayConf[0]); doAction = API.StatusAction.MUTE; } else if (itemId == R.id.action_mute_conversation) { if (status.isMuted()) doAction = API.StatusAction.UNMUTE_CONVERSATION; else doAction = API.StatusAction.MUTE_CONVERSATION; new PostActionAsyncTask(context, doAction, status.getId(), BaseNotificationsListAdapter.this); return true; } else if (itemId == R.id.action_open_browser) { Helper.openBrowser(context, status.getUrl()); return true; } else if (itemId == R.id.action_admin) { String account_id = status.getReblog() != null ? status.getReblog().getAccount().getId() : status.getAccount().getId(); Intent intent = new Intent(context, AccountReportActivity.class); Bundle b = new Bundle(); b.putString("account_id", account_id); intent.putExtras(b); context.startActivity(intent); return true; } else if (itemId == R.id.action_stats) { notificationStatusChart(status); return true; } else if (itemId == R.id.action_info) { Bundle b; Intent intent; intent = new Intent(context, TootInfoActivity.class); b = new Bundle(); if (status.getReblog() != null) { b.putString("toot_id", status.getReblog().getId()); b.putInt("toot_reblogs_count", status.getReblog().getReblogs_count()); b.putInt("toot_favorites_count", status.getReblog().getFavourites_count()); } else { b.putString("toot_id", status.getId()); b.putInt("toot_reblogs_count", status.getReblogs_count()); b.putInt("toot_favorites_count", status.getFavourites_count()); } intent.putExtras(b); context.startActivity(intent); return true; } else if (itemId == R.id.action_block_domain) { builderInner = new AlertDialog.Builder(context, style); builderInner.setTitle(stringArrayConf[3]); doAction = API.StatusAction.BLOCK_DOMAIN; String domain = status.getAccount().getAcct().split("@")[1]; builderInner.setMessage(context.getString(R.string.block_domain_confirm_message, domain)); } else if (itemId == R.id.action_block) { builderInner = new AlertDialog.Builder(context, style); builderInner.setTitle(stringArrayConf[1]); doAction = API.StatusAction.BLOCK; } else if (itemId == R.id.action_report) { builderInner = new AlertDialog.Builder(context, style); builderInner.setTitle(stringArrayConf[2]); doAction = API.StatusAction.REPORT; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) builderInner.setMessage(Html.fromHtml(status.getContent(), Html.FROM_HTML_MODE_LEGACY)); else builderInner.setMessage(Html.fromHtml(status.getContent())); } else if (itemId == R.id.action_copy) { ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE); String content; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) content = Html.fromHtml(status.getContent(), Html.FROM_HTML_MODE_LEGACY).toString(); else content = Html.fromHtml(status.getContent()).toString(); ClipData clip = ClipData.newPlainText(Helper.CLIP_BOARD, content); assert clipboard != null; clipboard.setPrimaryClip(clip); Toasty.info(context, context.getString(R.string.clipboard), Toast.LENGTH_LONG).show(); return true; } else if (itemId == R.id.action_copy_link) { ClipData clip; ClipboardManager clipboard; clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE); clip = ClipData.newPlainText(Helper.CLIP_BOARD, status.getReblog() != null ? status.getReblog().getUrl() : status.getUrl()); if (clipboard != null) { clipboard.setPrimaryClip(clip); Toasty.info(context, context.getString(R.string.clipboard_url), Toast.LENGTH_LONG).show(); } return true; } else if (itemId == R.id.action_share) { Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_SUBJECT, context.getString(R.string.shared_via)); sendIntent.putExtra(Intent.EXTRA_TEXT, status.getUrl()); sendIntent.setType("text/plain"); context.startActivity(Intent.createChooser(sendIntent, context.getString(R.string.share_with))); return true; } else if (itemId == R.id.action_custom_sharing) { Intent intentCustomSharing = new Intent(context, CustomSharingActivity.class); Bundle bCustomSharing = new Bundle(); if (status.getReblog() != null) { bCustomSharing.putParcelable("status", status.getReblog()); } else { bCustomSharing.putParcelable("status", status); } intentCustomSharing.putExtras(bCustomSharing); context.startActivity(intentCustomSharing); return true; } else if (itemId == R.id.action_mention) { Handler handler = new Handler(); handler.postDelayed(() -> { Intent intent1 = new Intent(context, TootActivity.class); Bundle b1 = new Bundle(); b1.putString("tootMention", (status.getReblog() != null) ? status.getReblog().getAccount().getAcct() : status.getAccount().getAcct()); b1.putString("urlMention", (status.getReblog() != null) ? status.getReblog().getUrl() : status.getUrl()); intent1.putExtras(b1); context.startActivity(intent1); }, 500); return true; } else { return true; } //Text for report EditText input = null; if (doAction == API.StatusAction.REPORT) { input = new EditText(context); LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); input.setLayoutParams(lp); builderInner.setView(input); } builderInner.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()); final EditText finalInput = input; builderInner.setPositiveButton(R.string.yes, (dialog, which) -> { if (doAction == API.StatusAction.UNSTATUS) { String targetedId = status.getId(); new PostActionAsyncTask(context, doAction, targetedId, BaseNotificationsListAdapter.this); } else if (doAction == API.StatusAction.REPORT) { String comment = null; if (finalInput.getText() != null) comment = finalInput.getText().toString(); new PostActionAsyncTask(context, doAction, status.getId(), status, comment, BaseNotificationsListAdapter.this); } else { String targetedId = status.getAccount().getId(); new PostActionAsyncTask(context, doAction, targetedId, BaseNotificationsListAdapter.this); } dialog.dismiss(); }); builderInner.show(); return true; }); popup.show(); }); holder.notification_status_content.setOnTouchListener((view, motionEvent) -> { if (motionEvent.getAction() == MotionEvent.ACTION_UP && !view.hasFocus()) { try { view.requestFocus(); } catch (Exception ignored) { } } return false; }); //Profile picture Helper.loadGiF(context, notification.getAccount(), holder.notification_account_profile); } private void notifyNotificationChanged(Notification notification) { for (int i = 0; i < notificationsListAdapter.getItemCount(); i++) { if (notificationsListAdapter.getItemAt(i) != null && Objects.requireNonNull(notificationsListAdapter.getItemAt(i)).getId().trim().compareTo(notification.getId().trim()) == 0) { try { if (mRecyclerView != null) { int finalI = i; mRecyclerView.post(() -> notificationsListAdapter.notifyItemChanged(finalI)); } break; } catch (Exception ignored) { } } } } public void notifyNotificationWithActionChanged(Status status) { for (int i = 0; i < notificationsListAdapter.getItemCount(); i++) { if (notificationsListAdapter.getItemAt(i) != null && Objects.requireNonNull(notificationsListAdapter.getItemAt(i)).getStatus() != null && Objects.requireNonNull(notificationsListAdapter.getItemAt(i)).getStatus().getId().equals(status.getId())) { try { if (notifications.get(i).getStatus() != null) { notifications.get(i).setStatus(status); notifyItemChanged(i); if (mRecyclerView != null) { int finalI = i; mRecyclerView.post(() -> notificationsListAdapter.notifyItemChanged(finalI)); } break; } } catch (Exception ignored) { } } } } @Override public long getItemId(int position) { return position; } @Override public int getItemCount() { return notifications.size(); } protected Notification getItemAt(int position) { if (notifications.size() > position) return notifications.get(position); else return null; } /** * Display a validation message for notification deletion * * @param notification Notification */ private void displayConfirmationNotificationDialog(final Notification notification) { final ArrayList seletedItems = new ArrayList<>(); AlertDialog dialog = new AlertDialog.Builder(context, style) .setTitle(R.string.delete_notification_ask) .setMultiChoiceItems(new String[]{context.getString(R.string.delete_notification_ask_all)}, null, (dialog1, indexSelected, isChecked) -> { if (isChecked) { seletedItems.add(indexSelected); } else { if (seletedItems.contains(indexSelected)) seletedItems.remove(Integer.valueOf(indexSelected)); } }).setPositiveButton(R.string.yes, (dialog13, id) -> { if (seletedItems.size() > 0) new PostNotificationsAsyncTask(context, null, BaseNotificationsListAdapter.this); else new PostNotificationsAsyncTask(context, notification.getId(), BaseNotificationsListAdapter.this); dialog13.dismiss(); }).setNegativeButton(R.string.cancel, (dialog12, id) -> dialog12.dismiss()).create(); dialog.show(); } @Override public void onPostAction(int statusCode, API.StatusAction statusAction, String targetedId, Error error) { if (error != null) { Toasty.error(context, error.getError(), Toast.LENGTH_LONG).show(); return; } Helper.manageMessageStatusCode(context, statusCode, statusAction); //When muting or blocking an account, its status are removed from the list List notificationsToRemove = new ArrayList<>(); if (statusAction == API.StatusAction.MUTE || statusAction == API.StatusAction.BLOCK) { for (Notification notification : notifications) { if (notification.getType().toLowerCase().equals("mention") && notification.getAccount().getId().equals(targetedId)) notificationsToRemove.add(notification); } notifications.removeAll(notificationsToRemove); notificationsListAdapter.notifyDataSetChanged(); } } @Override public void onPostNotificationsAction(APIResponse apiResponse, String targetedId) { if (apiResponse.getError() != null) { Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show(); return; } if (targetedId != null) { int position = 0; for (Notification notif : notifications) { if (notif.getId().equals(targetedId)) { notifications.remove(notif); notificationsListAdapter.notifyItemRemoved(position); break; } position++; } Toasty.success(context, context.getString(R.string.delete_notification), Toast.LENGTH_LONG).show(); } else { int size = notifications.size(); notifications.clear(); notificationsListAdapter.notifyItemRangeRemoved(0, size); Toasty.success(context, context.getString(R.string.delete_notification_all), Toast.LENGTH_LONG).show(); } } private void loadAttachments(final Notification notification, ViewHolder holder) { List attachments = notification.getStatus().getMedia_attachments(); if (attachments != null && attachments.size() > 0) { int i = 0; holder.status_document_container.setVisibility(View.VISIBLE); if (attachments.size() == 1) { holder.status_container2.setVisibility(View.GONE); if (attachments.get(0).getUrl().trim().contains("missing.png")) holder.status_document_container.setVisibility(View.GONE); } else if (attachments.size() == 2) { holder.status_container2.setVisibility(View.VISIBLE); holder.status_container3.setVisibility(View.GONE); holder.status_prev4_container.setVisibility(View.GONE); if (attachments.get(1).getUrl().trim().contains("missing.png")) holder.status_container2.setVisibility(View.GONE); } else if (attachments.size() == 3) { holder.status_container2.setVisibility(View.VISIBLE); holder.status_container3.setVisibility(View.VISIBLE); holder.status_prev4_container.setVisibility(View.GONE); if (attachments.get(2).getUrl().trim().contains("missing.png")) holder.status_container3.setVisibility(View.GONE); } else { holder.status_container2.setVisibility(View.VISIBLE); holder.status_container3.setVisibility(View.VISIBLE); holder.status_prev4_container.setVisibility(View.VISIBLE); if (attachments.get(2).getUrl().trim().contains("missing.png")) holder.status_prev4_container.setVisibility(View.GONE); } int position = 1; for (final Attachment attachment : attachments) { ImageView imageView; if (i == 0) { imageView = holder.status_prev1; if (attachment.getType().toLowerCase().equals("image")) holder.status_prev1_play.setVisibility(View.GONE); else holder.status_prev1_play.setVisibility(View.VISIBLE); } else if (i == 1) { imageView = holder.status_prev2; if (attachment.getType().toLowerCase().equals("image")) holder.status_prev2_play.setVisibility(View.GONE); else holder.status_prev2_play.setVisibility(View.VISIBLE); } else if (i == 2) { imageView = holder.status_prev3; if (attachment.getType().toLowerCase().equals("image")) holder.status_prev3_play.setVisibility(View.GONE); else holder.status_prev3_play.setVisibility(View.VISIBLE); } else { imageView = holder.status_prev4; if (attachment.getType().toLowerCase().equals("image")) holder.status_prev4_play.setVisibility(View.GONE); else holder.status_prev4_play.setVisibility(View.VISIBLE); } String url = attachment.getPreview_url(); if (url == null || url.trim().equals("")) url = attachment.getUrl(); if (!url.trim().contains("missing.png")) Glide.with(imageView.getContext()) .load(url) .override(640, 480) .into(imageView); final int finalPosition = position; imageView.setOnClickListener(v -> { Intent intent = new Intent(context, SlideMediaActivity.class); Bundle b = new Bundle(); intent.putParcelableArrayListExtra("mediaArray", notification.getStatus().getMedia_attachments()); b.putInt("position", finalPosition); b.putInt("bgcolor", context.getResources().getColor(R.color.cyanea_primary_dark)); intent.putExtras(b); if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) { ActivityOptionsCompat options = ActivityOptionsCompat .makeSceneTransitionAnimation((Activity) context, imageView, notification.getStatus().getMedia_attachments().get(finalPosition - 1).getUrl()); // start the new activity context.startActivity(intent, options.toBundle()); } else { // start the new activity context.startActivity(intent); } }); i++; position++; } } else { holder.status_document_container.setVisibility(View.GONE); } holder.status_show_more.setVisibility(View.GONE); } @Override public void onRetrieveEmoji(Status status, boolean fromTranslation) { if (status != null) { notifyNotificationWithActionChanged(status); } } @Override public void onRetrieveEmoji(Notification notification) { if (notification != null && notification.getStatus() != null) { notifyNotificationChanged(notification); } } @Override public void onRetrieveSearchEmoji(List emojis) { } @Override public void onViewAttachedToWindow(@NonNull RecyclerView.ViewHolder holder) { super.onViewAttachedToWindow(holder); final NotificationsListAdapter.ViewHolder viewHolder = (NotificationsListAdapter.ViewHolder) holder; // Bug workaround for losing text selection ability, see: // https://code.google.com/p/android/issues/detail?id=208169 viewHolder.notification_status_content.setEnabled(false); viewHolder.notification_status_content.setEnabled(true); viewHolder.status_spoiler.setEnabled(false); viewHolder.status_spoiler.setEnabled(true); } @Override public void onRetrieveEmojiAccount(Account account) { for (Notification notification : notifications) { if (notification.getAccount().equals(account)) { notifyNotificationChanged(notification); } } } @Override public void onPoll(Status status, Poll poll) { if (status != null) { status.setPoll(poll); notifyNotificationWithActionChanged(status); } } @Override public void onRetrieveImage(Status status, boolean fromTranslation) { if (status != null) { status.setEmojiFound(true); notifyNotificationWithActionChanged(status); } } protected abstract void notificationStatusChart(Status status); class ViewHolder extends RecyclerView.ViewHolder { FrameLayout card_status_container; CustomTextView notification_status_content; TextView notification_type; LinearLayout status_spoiler_container; CustomTextView status_spoiler; Button status_spoiler_button; TextView notification_account_username; ImageView notification_account_profile; ImageView notification_delete; TextView status_favorite_count; TextView status_reblog_count; TextView status_date; TextView status_reply_count; LinearLayout status_document_container; ConstraintLayout status_action_container; Button status_show_more; ImageView status_prev1; ImageView status_prev2; ImageView status_prev3; ImageView status_prev4; ImageView status_prev1_play; ImageView status_prev2_play; ImageView status_prev3_play; ImageView status_prev4_play; ImageView status_more; RelativeLayout status_prev4_container; LinearLayout status_container2; LinearLayout status_container3; LinearLayout notification_status_container; RelativeLayout main_container_trans; ImageView status_privacy; LinearLayout status_spoiler_mention_container; TextView status_mention_spoiler; ImageView status_reply; SparkButton spark_button_fav, spark_button_reblog; //Poll LinearLayout poll_container, single_choice, multiple_choice, rated; RadioGroup radio_group; TextView number_votes, remaining_time; Button submit_vote, refresh_poll; LinearLayout main_linear_container; public ViewHolder(View itemView) { super(itemView); card_status_container = itemView.findViewById(R.id.card_status_container); main_container_trans = itemView.findViewById(R.id.container_trans); notification_status_container = itemView.findViewById(R.id.notification_status_container); status_document_container = itemView.findViewById(R.id.status_document_container); notification_status_content = itemView.findViewById(R.id.notification_status_content); notification_account_username = itemView.findViewById(R.id.notification_account_username); notification_type = itemView.findViewById(R.id.notification_type); notification_account_profile = itemView.findViewById(R.id.notification_account_profile); status_favorite_count = itemView.findViewById(R.id.status_favorite_count); status_reblog_count = itemView.findViewById(R.id.status_reblog_count); status_date = itemView.findViewById(R.id.status_date); status_reply_count = itemView.findViewById(R.id.status_reply_count); status_privacy = itemView.findViewById(R.id.status_privacy); notification_delete = itemView.findViewById(R.id.notification_delete); status_show_more = itemView.findViewById(R.id.status_show_more); status_prev1 = itemView.findViewById(R.id.status_prev1); status_prev2 = itemView.findViewById(R.id.status_prev2); status_prev3 = itemView.findViewById(R.id.status_prev3); status_prev4 = itemView.findViewById(R.id.status_prev4); status_prev1_play = itemView.findViewById(R.id.status_prev1_play); status_prev2_play = itemView.findViewById(R.id.status_prev2_play); status_prev3_play = itemView.findViewById(R.id.status_prev3_play); status_prev4_play = itemView.findViewById(R.id.status_prev4_play); status_container2 = itemView.findViewById(R.id.status_container2); status_container3 = itemView.findViewById(R.id.status_container3); status_prev4_container = itemView.findViewById(R.id.status_prev4_container); status_action_container = itemView.findViewById(R.id.status_action_container); status_more = itemView.findViewById(R.id.status_more); status_spoiler_container = itemView.findViewById(R.id.status_spoiler_container); status_spoiler = itemView.findViewById(R.id.status_spoiler); status_spoiler_button = itemView.findViewById(R.id.status_spoiler_button); status_spoiler_mention_container = itemView.findViewById(R.id.status_spoiler_mention_container); status_mention_spoiler = itemView.findViewById(R.id.status_mention_spoiler); status_reply = itemView.findViewById(R.id.status_reply); spark_button_fav = itemView.findViewById(R.id.spark_button_fav); spark_button_reblog = itemView.findViewById(R.id.spark_button_reblog); poll_container = itemView.findViewById(R.id.poll_container); single_choice = itemView.findViewById(R.id.single_choice); multiple_choice = itemView.findViewById(R.id.multiple_choice); rated = itemView.findViewById(R.id.rated); radio_group = itemView.findViewById(R.id.radio_group); number_votes = itemView.findViewById(R.id.number_votes); remaining_time = itemView.findViewById(R.id.remaining_time); submit_vote = itemView.findViewById(R.id.submit_vote); refresh_poll = itemView.findViewById(R.id.refresh_poll); main_linear_container = itemView.findViewById(R.id.main_linear_container); } public View getView() { return itemView; } void updateAnimatedEmoji() { notification_status_content.invalidate(); notification_account_username.invalidate(); } void startUpdateTimer() { final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); boolean disableAnimatedEmoji = sharedpreferences.getBoolean(Helper.SET_DISABLE_ANIMATED_EMOJI, false); if (!disableAnimatedEmoji) { if (BaseActivity.timer == null) { BaseActivity.timer = new Timer(); } BaseActivity.timer.schedule(new TimerTask() { @Override public void run() { mHandler.post(updateAnimatedEmoji); } }, 0, 130); } } } }