Change summary
src/main/java/eu/siacs/conversations/ui/adapter/AccountAdapter.java | 2
src/main/java/eu/siacs/conversations/ui/adapter/ConversationAdapter.java | 2
src/main/java/eu/siacs/conversations/ui/adapter/ListItemAdapter.java | 2
3 files changed, 3 insertions(+), 3 deletions(-)
Detailed changes
@@ -84,7 +84,7 @@ public class AccountAdapter extends ArrayAdapter<Account> {
if (activity.xmppConnectionService != null && activity.xmppConnectionService.getAccounts().size() > 1) {
viewHolder.binding.frame.setBackgroundColor(ColorUtils.setAlphaComponent(
UIHelper.getColorForName(account.getJid().asBareJid().toString()),
- activity.isDarkTheme() ? 20 : 10
+ activity.isDarkTheme() ? 20 : 15
));
}
return view;
@@ -72,7 +72,7 @@ public class ConversationAdapter
if (activity.xmppConnectionService != null && activity.xmppConnectionService.getAccounts().size() > 1) {
viewHolder.binding.frame.setBackgroundColor(ColorUtils.setAlphaComponent(
UIHelper.getColorForName(conversation.getAccount().getJid().asBareJid().toString()),
- activity.isDarkTheme() ? 20 : 10
+ activity.isDarkTheme() ? 20 : 15
));
}
@@ -67,7 +67,7 @@ public class ListItemAdapter extends ArrayAdapter<ListItem> {
if (activity.xmppConnectionService != null && activity.xmppConnectionService.getAccounts().size() > 1) {
view.setBackgroundColor(ColorUtils.setAlphaComponent(
UIHelper.getColorForName(item.getAccount().getJid().asBareJid().toString()),
- activity.isDarkTheme() ? 20 : 10
+ activity.isDarkTheme() ? 20 : 15
));
} else {
view.setBackground(StyledAttributes.getDrawable(view.getContext(),R.attr.list_item_background));