forked from mirrors/Fedilab
Fix issue with icon when following
This commit is contained in:
parent
2fc7eada97
commit
aa6f87facb
1 changed files with 2 additions and 1 deletions
|
@ -83,7 +83,7 @@ public class AccountAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
|
||||||
if (account.relationShip != null) {
|
if (account.relationShip != null) {
|
||||||
|
|
||||||
doAction = ProfileActivity.action.FOLLOW;
|
doAction = ProfileActivity.action.FOLLOW;
|
||||||
accountViewHolder.binding.followAction.setText(R.string.action_follow);
|
accountViewHolder.binding.followAction.setContentDescription(context.getString(R.string.action_follow));
|
||||||
accountViewHolder.binding.followAction.setVisibility(View.VISIBLE);
|
accountViewHolder.binding.followAction.setVisibility(View.VISIBLE);
|
||||||
accountViewHolder.binding.followAction.setEnabled(true);
|
accountViewHolder.binding.followAction.setEnabled(true);
|
||||||
|
|
||||||
|
@ -108,6 +108,7 @@ public class AccountAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
|
||||||
accountViewHolder.binding.followAction.setEnabled(false);
|
accountViewHolder.binding.followAction.setEnabled(false);
|
||||||
accountViewHolder.binding.followAction.setIconResource(R.drawable.ic_baseline_hourglass_full_24);
|
accountViewHolder.binding.followAction.setIconResource(R.drawable.ic_baseline_hourglass_full_24);
|
||||||
} else {
|
} else {
|
||||||
|
accountViewHolder.binding.followAction.setIconResource(R.drawable.ic_baseline_person_add_24);
|
||||||
accountViewHolder.binding.followAction.setBackgroundTintList(ColorStateList.valueOf(ContextCompat.getColor(context, R.color.cyanea_accent_dark_reference)));
|
accountViewHolder.binding.followAction.setBackgroundTintList(ColorStateList.valueOf(ContextCompat.getColor(context, R.color.cyanea_accent_dark_reference)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue