This commit is contained in:
tom79 2019-09-25 15:44:52 +02:00
parent c8e7e1e4dc
commit a75c7ee327
9 changed files with 74 additions and 264 deletions

View File

@ -246,6 +246,9 @@ public abstract class BaseMainActivity extends BaseActivity
default: default:
mLauncher = iconLauncher.BUBBLES; mLauncher = iconLauncher.BUBBLES;
} }
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString(Helper.LOGO_LAUNCHER, icon);
editor.commit();
} }
} }
} }

View File

@ -256,27 +256,7 @@ public class LoginActivity extends BaseActivity {
connectionButton = findViewById(R.id.login_button); connectionButton = findViewById(R.id.login_button);
info_instance = findViewById(R.id.info_instance); info_instance = findViewById(R.id.info_instance);
ImageView main_logo = findViewById(R.id.main_logo); ImageView main_logo = findViewById(R.id.main_logo);
main_logo.setImageResource(Helper.getMainLogo(getApplicationContext()));
switch (BaseMainActivity.mLauncher){
case BUBBLES:
main_logo.setImageResource(R.drawable.fedilab_logo_bubble);
break;
case FEDIVERSE:
main_logo.setImageResource(R.drawable.fedilab_logo_fediverse);
break;
case HERO:
main_logo.setImageResource(R.drawable.fedilab_logo_hero);
break;
case ATOM:
main_logo.setImageResource(R.drawable.fedilab_logo_atom);
break;
case BRAINCRASH:
main_logo.setImageResource(R.drawable.fedilab_logo_braincrash);
break;
default:
main_logo.setImageResource(R.drawable.fedilab_logo_bubble);
}
socialNetwork = UpdateAccountInfoAsyncTask.SOCIAL.MASTODON; socialNetwork = UpdateAccountInfoAsyncTask.SOCIAL.MASTODON;
//Manage instances //Manage instances
info_instance.setOnClickListener(new View.OnClickListener() { info_instance.setOnClickListener(new View.OnClickListener() {

View File

@ -210,6 +210,7 @@ import app.fedilab.android.client.Entities.Tag;
import app.fedilab.android.client.Entities.TagTimeline; import app.fedilab.android.client.Entities.TagTimeline;
import app.fedilab.android.client.Entities.Version; import app.fedilab.android.client.Entities.Version;
import app.fedilab.android.client.Tls12SocketFactory; import app.fedilab.android.client.Tls12SocketFactory;
import app.fedilab.android.fragments.ContentSettingsFragment;
import app.fedilab.android.sqlite.MainMenuDAO; import app.fedilab.android.sqlite.MainMenuDAO;
import app.fedilab.android.sqlite.StatusCacheDAO; import app.fedilab.android.sqlite.StatusCacheDAO;
import app.fedilab.android.sqlite.TimelineCacheDAO; import app.fedilab.android.sqlite.TimelineCacheDAO;
@ -355,6 +356,7 @@ public class Helper {
public static final String SET_DISABLE_ANIMATED_EMOJI = "set_disable_animated_emoji"; public static final String SET_DISABLE_ANIMATED_EMOJI = "set_disable_animated_emoji";
public static final String SET_CAPITALIZE = "set_capitalize"; public static final String SET_CAPITALIZE = "set_capitalize";
public static final String SET_WYSIWYG = "set_wysiwyg"; public static final String SET_WYSIWYG = "set_wysiwyg";
public static final String LOGO_LAUNCHER = "logo_launcher";
public static final String SET_PICTURE_COMPRESSED = "set_picture_compressed"; public static final String SET_PICTURE_COMPRESSED = "set_picture_compressed";
public static final String SET_VIDEO_COMPRESSED = "set_picture_compressed"; public static final String SET_VIDEO_COMPRESSED = "set_picture_compressed";
public static final String SET_FORWARD_TAGS_IN_REPLY = "set_forward_tags_in_reply"; public static final String SET_FORWARD_TAGS_IN_REPLY = "set_forward_tags_in_reply";
@ -1177,29 +1179,8 @@ public class Helper {
channelId = "channel_boost"; channelId = "channel_boost";
channelTitle = context.getString(R.string.channel_notif_boost); channelTitle = context.getString(R.string.channel_notif_boost);
} }
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context, channelId); NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context, channelId)
.setSmallIcon(getNotificationIcon(context)).setTicker(message)
switch (BaseMainActivity.mLauncher){
case BUBBLES:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
break;
case FEDIVERSE:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_fediverse);
break;
case HERO:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_hero);
break;
case ATOM:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_atom);
break;
case BRAINCRASH:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_crash);
break;
default:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
}
notificationBuilder.setTicker(message)
.setWhen(System.currentTimeMillis()) .setWhen(System.currentTimeMillis())
.setAutoCancel(true); .setAutoCancel(true);
if (notifType == MENTION) { if (notifType == MENTION) {
@ -1742,11 +1723,49 @@ public class Helper {
changeAccount.putExtra(INTENT_ACTION, NOTIFICATION_INTENT); changeAccount.putExtra(INTENT_ACTION, NOTIFICATION_INTENT);
activity.finish(); activity.finish();
activity.startActivity(changeAccount); activity.startActivity(changeAccount);
} }
public static int getNotificationIcon(Context context){
final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
String logo = sharedpreferences.getString(Helper.LOGO_LAUNCHER, "bubbles");
switch (logo) {
case "bubbles":
return R.drawable.ic_plain_bubbles;
case "fediverse":
return R.drawable.ic_plain_fediverse;
case "hero":
return R.drawable.ic_plain_hero;
case "atom":
return R.drawable.ic_plain_atom;
case "braincrash":
return R.drawable.ic_plain_crash;
default:
return R.drawable.ic_plain_bubbles;
}
}
public static int getMainLogo(Context context){
final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
String logo = sharedpreferences.getString(Helper.LOGO_LAUNCHER, "bubbles");
switch (logo) {
case "bubbles":
return R.drawable.fedilab_logo_bubbles;
case "fediverse":
return R.drawable.fedilab_logo_fediverse;
case "hero":
return R.drawable.fedilab_logo_hero;
case "atom":
return R.drawable.fedilab_logo_atom;
case "braincrash":
return R.drawable.fedilab_logo_crash;
default:
return R.drawable.fedilab_logo_bubbles;
}
}
@SuppressWarnings("SameParameterValue") @SuppressWarnings("SameParameterValue")
private static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int roundPixelSize) { private static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int roundPixelSize) {
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.RGB_565); Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.RGB_565);

View File

@ -62,6 +62,7 @@ import static app.fedilab.android.helper.Helper.NOTIFICATION_INTENT;
import static app.fedilab.android.helper.Helper.PREF_INSTANCE; import static app.fedilab.android.helper.Helper.PREF_INSTANCE;
import static app.fedilab.android.helper.Helper.PREF_KEY_ID; import static app.fedilab.android.helper.Helper.PREF_KEY_ID;
import static app.fedilab.android.helper.Helper.canNotify; import static app.fedilab.android.helper.Helper.canNotify;
import static app.fedilab.android.helper.Helper.getMainLogo;
import static app.fedilab.android.helper.Helper.notify_user; import static app.fedilab.android.helper.Helper.notify_user;
@ -293,30 +294,8 @@ public class NotificationsSyncJob extends Job {
@Override @Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target target, boolean isFirstResource) { public boolean onLoadFailed(@Nullable GlideException e, Object model, Target target, boolean isFirstResource) {
int logo_icon = R.drawable.fedilab_logo_bubble;
switch (BaseMainActivity.mLauncher){
case BUBBLES:
logo_icon = R.drawable.fedilab_logo_bubble;
break;
case FEDIVERSE:
logo_icon = R.drawable.fedilab_logo_fediverse;
break;
case HERO:
logo_icon = R.drawable.fedilab_logo_hero;
break;
case ATOM:
logo_icon = R.drawable.fedilab_logo_atom;
break;
case BRAINCRASH:
logo_icon = R.drawable.fedilab_logo_braincrash;
break;
default:
logo_icon = R.drawable.fedilab_logo_bubble;
}
notify_user(getContext(), account, intent, BitmapFactory.decodeResource(getContext().getResources(), notify_user(getContext(), account, intent, BitmapFactory.decodeResource(getContext().getResources(),
logo_icon), finalNotifType, finalTitle, message); getMainLogo(getContext())), finalNotifType, finalTitle, message);
String lastNotif = sharedpreferences.getString(Helper.LAST_NOTIFICATION_MAX_ID + account.getId() + account.getInstance(), null); String lastNotif = sharedpreferences.getString(Helper.LAST_NOTIFICATION_MAX_ID + account.getId() + account.getInstance(), null);
if (lastNotif == null || notifications.get(0).getId().compareTo(lastNotif) > 0) { if (lastNotif == null || notifications.get(0).getId().compareTo(lastNotif) > 0) {
SharedPreferences.Editor editor = sharedpreferences.edit(); SharedPreferences.Editor editor = sharedpreferences.edit();

View File

@ -150,29 +150,9 @@ public class BackupNotificationInDataBaseService extends IntentService {
mainActivity.putExtra(Helper.INTENT_ACTION, Helper.BACKUP_NOTIFICATION_INTENT); mainActivity.putExtra(Helper.INTENT_ACTION, Helper.BACKUP_NOTIFICATION_INTENT);
String title = getString(R.string.data_backup_toots, account.getAcct()); String title = getString(R.string.data_backup_toots, account.getAcct());
if (finalToastMessage) { if (finalToastMessage) {
int logo_icon = R.drawable.fedilab_logo_bubble;
switch (BaseMainActivity.mLauncher){
case BUBBLES:
logo_icon = R.drawable.fedilab_logo_bubble;
break;
case FEDIVERSE:
logo_icon = R.drawable.fedilab_logo_fediverse;
break;
case HERO:
logo_icon = R.drawable.fedilab_logo_hero;
break;
case ATOM:
logo_icon = R.drawable.fedilab_logo_atom;
break;
case BRAINCRASH:
logo_icon = R.drawable.fedilab_logo_braincrash;
break;
default:
logo_icon = R.drawable.fedilab_logo_bubble;
}
Helper.notify_user(getApplicationContext(), account, mainActivity, BitmapFactory.decodeResource(getResources(), Helper.notify_user(getApplicationContext(), account, mainActivity, BitmapFactory.decodeResource(getResources(),
logo_icon), Helper.NotifType.BACKUP, title, message); Helper.getMainLogo(getApplicationContext())), Helper.NotifType.BACKUP, title, message);
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();

View File

@ -150,28 +150,8 @@ public class BackupStatusInDataBaseService extends IntentService {
mainActivity.putExtra(Helper.INTENT_ACTION, Helper.BACKUP_INTENT); mainActivity.putExtra(Helper.INTENT_ACTION, Helper.BACKUP_INTENT);
String title = getString(R.string.data_backup_toots, account.getAcct()); String title = getString(R.string.data_backup_toots, account.getAcct());
if (finalToastMessage) { if (finalToastMessage) {
int logo_icon = R.drawable.fedilab_logo_bubble;
switch (BaseMainActivity.mLauncher){
case BUBBLES:
logo_icon = R.drawable.fedilab_logo_bubble;
break;
case FEDIVERSE:
logo_icon = R.drawable.fedilab_logo_fediverse;
break;
case HERO:
logo_icon = R.drawable.fedilab_logo_hero;
break;
case ATOM:
logo_icon = R.drawable.fedilab_logo_atom;
break;
case BRAINCRASH:
logo_icon = R.drawable.fedilab_logo_braincrash;
break;
default:
logo_icon = R.drawable.fedilab_logo_bubble;
}
Helper.notify_user(getApplicationContext(), account, mainActivity, BitmapFactory.decodeResource(getResources(), Helper.notify_user(getApplicationContext(), account, mainActivity, BitmapFactory.decodeResource(getResources(),
logo_icon), Helper.NotifType.BACKUP, title, message); Helper.getMainLogo(getApplicationContext())), Helper.NotifType.BACKUP, title, message);
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();

View File

@ -189,28 +189,8 @@ public class BackupStatusService extends IntentService {
Uri uri = Uri.parse("file://" + fullPath); Uri uri = Uri.parse("file://" + fullPath);
intentOpen.setDataAndType(uri, "text/csv"); intentOpen.setDataAndType(uri, "text/csv");
String title = getString(R.string.data_export_toots, account.getAcct()); String title = getString(R.string.data_export_toots, account.getAcct());
int logo_icon = R.drawable.fedilab_logo_bubble;
switch (BaseMainActivity.mLauncher){
case BUBBLES:
logo_icon = R.drawable.fedilab_logo_bubble;
break;
case FEDIVERSE:
logo_icon = R.drawable.fedilab_logo_fediverse;
break;
case HERO:
logo_icon = R.drawable.fedilab_logo_hero;
break;
case ATOM:
logo_icon = R.drawable.fedilab_logo_atom;
break;
case BRAINCRASH:
logo_icon = R.drawable.fedilab_logo_braincrash;
break;
default:
logo_icon = R.drawable.fedilab_logo_bubble;
}
Helper.notify_user(getApplicationContext(), account, intentOpen, BitmapFactory.decodeResource(getResources(), Helper.notify_user(getApplicationContext(), account, intentOpen, BitmapFactory.decodeResource(getResources(),
logo_icon), Helper.NotifType.BACKUP, title, message); Helper.getMainLogo(getApplicationContext())), Helper.NotifType.BACKUP, title, message);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
message = getString(R.string.data_export_error, account.getAcct()); message = getString(R.string.data_export_error, account.getAcct());

View File

@ -65,6 +65,8 @@ import app.fedilab.android.sqlite.AccountDAO;
import app.fedilab.android.sqlite.Sqlite; import app.fedilab.android.sqlite.Sqlite;
import static androidx.core.text.HtmlCompat.FROM_HTML_MODE_LEGACY; import static androidx.core.text.HtmlCompat.FROM_HTML_MODE_LEGACY;
import static app.fedilab.android.helper.Helper.getMainLogo;
import static app.fedilab.android.helper.Helper.getNotificationIcon;
/** /**
@ -140,28 +142,10 @@ public class LiveNotificationDelayedService extends Service {
} }
} }
} }
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, CHANNEL_ID). android.app.Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID).
setContentTitle(getString(R.string.top_notification)); setContentTitle(getString(R.string.top_notification))
switch (BaseMainActivity.mLauncher){ .setSmallIcon(getNotificationIcon(getApplicationContext()))
case BUBBLES: .setContentText(getString(R.string.top_notification_message, String.valueOf(totalAccount), String.valueOf(eventsCount))).build();
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
break;
case FEDIVERSE:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_fediverse);
break;
case HERO:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_hero);
break;
case ATOM:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_atom);
break;
case BRAINCRASH:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_crash);
break;
default:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
}
android.app.Notification notification = notificationBuilder.setContentText(getString(R.string.top_notification_message, String.valueOf(totalAccount), String.valueOf(eventsCount))).build();
startForeground(1, notification); startForeground(1, notification);
} }
@ -240,28 +224,9 @@ public class LiveNotificationDelayedService extends Service {
"Live notifications", "Live notifications",
NotificationManager.IMPORTANCE_DEFAULT); NotificationManager.IMPORTANCE_DEFAULT);
((NotificationManager) Objects.requireNonNull(getSystemService(Context.NOTIFICATION_SERVICE))).createNotificationChannel(channel); ((NotificationManager) Objects.requireNonNull(getSystemService(Context.NOTIFICATION_SERVICE))).createNotificationChannel(channel);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, CHANNEL_ID) android.app.Notification notificationChannel = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle(getString(R.string.top_notification)); .setContentTitle(getString(R.string.top_notification))
switch (BaseMainActivity.mLauncher){ .setSmallIcon(getNotificationIcon(getApplicationContext())).setContentText(getString(R.string.top_notification_message, String.valueOf(totalAccount), String.valueOf(eventsCount))).build();
case BUBBLES:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
break;
case FEDIVERSE:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_fediverse);
break;
case HERO:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_hero);
break;
case ATOM:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_atom);
break;
case BRAINCRASH:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_crash);
break;
default:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
}
android.app.Notification notificationChannel = notificationBuilder.setContentText(getString(R.string.top_notification_message, String.valueOf(totalAccount), String.valueOf(eventsCount))).build();
startForeground(1, notificationChannel); startForeground(1, notificationChannel);
} }
@ -383,28 +348,8 @@ public class LiveNotificationDelayedService extends Service {
@Override @Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target target, boolean isFirstResource) { public boolean onLoadFailed(@Nullable GlideException e, Object model, Target target, boolean isFirstResource) {
int logo_icon = R.drawable.fedilab_logo_bubble;
switch (BaseMainActivity.mLauncher){
case BUBBLES:
logo_icon = R.drawable.fedilab_logo_bubble;
break;
case FEDIVERSE:
logo_icon = R.drawable.fedilab_logo_fediverse;
break;
case HERO:
logo_icon = R.drawable.fedilab_logo_hero;
break;
case ATOM:
logo_icon = R.drawable.fedilab_logo_atom;
break;
case BRAINCRASH:
logo_icon = R.drawable.fedilab_logo_braincrash;
break;
default:
logo_icon = R.drawable.fedilab_logo_bubble;
}
Helper.notify_user(getApplicationContext(), account, intent, BitmapFactory.decodeResource(getResources(), Helper.notify_user(getApplicationContext(), account, intent, BitmapFactory.decodeResource(getResources(),
logo_icon), finalNotifType, "@" + notification.getAccount().getAcct(), finalMessage); getMainLogo(getApplicationContext())), finalNotifType, "@" + notification.getAccount().getAcct(), finalMessage);
return false; return false;
} }
}) })

View File

@ -82,6 +82,8 @@ import app.fedilab.android.activities.MainActivity;
import me.leolin.shortcutbadger.ShortcutBadger; import me.leolin.shortcutbadger.ShortcutBadger;
import static androidx.core.text.HtmlCompat.FROM_HTML_MODE_LEGACY; import static androidx.core.text.HtmlCompat.FROM_HTML_MODE_LEGACY;
import static app.fedilab.android.helper.Helper.getMainLogo;
import static app.fedilab.android.helper.Helper.getNotificationIcon;
/** /**
@ -157,30 +159,10 @@ public class LiveNotificationService extends Service implements NetworkStateRece
} }
} }
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, CHANNEL_ID) android.app.Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle(getString(R.string.top_notification)); .setContentTitle(getString(R.string.top_notification))
.setSmallIcon(getNotificationIcon(getApplicationContext()))
switch (BaseMainActivity.mLauncher){ .setContentText(getString(R.string.top_notification_message, String.valueOf(totalAccount), String.valueOf(eventsCount))).build();
case BUBBLES:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
break;
case FEDIVERSE:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_fediverse);
break;
case HERO:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_hero);
break;
case ATOM:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_atom);
break;
case BRAINCRASH:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_crash);
break;
default:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
}
android.app.Notification notification = notificationBuilder.setContentText(getString(R.string.top_notification_message, String.valueOf(totalAccount), String.valueOf(eventsCount))).build();
startForeground(1, notification); startForeground(1, notification);
} }
@ -320,28 +302,10 @@ public class LiveNotificationService extends Service implements NetworkStateRece
"Live notifications", "Live notifications",
NotificationManager.IMPORTANCE_DEFAULT); NotificationManager.IMPORTANCE_DEFAULT);
((NotificationManager) Objects.requireNonNull(getSystemService(Context.NOTIFICATION_SERVICE))).createNotificationChannel(channel); ((NotificationManager) Objects.requireNonNull(getSystemService(Context.NOTIFICATION_SERVICE))).createNotificationChannel(channel);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, CHANNEL_ID) android.app.Notification notificationChannel = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle(getString(R.string.top_notification)); .setContentTitle(getString(R.string.top_notification))
switch (BaseMainActivity.mLauncher){ .setSmallIcon(getNotificationIcon(getApplicationContext()))
case BUBBLES: .setContentText(getString(R.string.top_notification_message, String.valueOf(totalAccount), String.valueOf(eventsCount))).build();
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
break;
case FEDIVERSE:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_fediverse);
break;
case HERO:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_hero);
break;
case ATOM:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_atom);
break;
case BRAINCRASH:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_crash);
break;
default:
notificationBuilder.setSmallIcon(R.drawable.ic_plain_bubbles);
}
android.app.Notification notificationChannel = notificationBuilder.setContentText(getString(R.string.top_notification_message, String.valueOf(totalAccount), String.valueOf(eventsCount))).build();
startForeground(1, notificationChannel); startForeground(1, notificationChannel);
} }
@ -476,28 +440,8 @@ public class LiveNotificationService extends Service implements NetworkStateRece
@Override @Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target target, boolean isFirstResource) { public boolean onLoadFailed(@Nullable GlideException e, Object model, Target target, boolean isFirstResource) {
int logo_icon = R.drawable.fedilab_logo_bubble;
switch (BaseMainActivity.mLauncher){
case BUBBLES:
logo_icon = R.drawable.fedilab_logo_bubble;
break;
case FEDIVERSE:
logo_icon = R.drawable.fedilab_logo_fediverse;
break;
case HERO:
logo_icon = R.drawable.fedilab_logo_hero;
break;
case ATOM:
logo_icon = R.drawable.fedilab_logo_atom;
break;
case BRAINCRASH:
logo_icon = R.drawable.fedilab_logo_braincrash;
break;
default:
logo_icon = R.drawable.fedilab_logo_bubble;
}
Helper.notify_user(getApplicationContext(), account, intent, BitmapFactory.decodeResource(getResources(), Helper.notify_user(getApplicationContext(), account, intent, BitmapFactory.decodeResource(getResources(),
logo_icon), finalNotifType, "@" + notification.getAccount().getAcct(), finalMessage); getMainLogo(getApplicationContext())), finalNotifType, "@" + notification.getAccount().getAcct(), finalMessage);
return false; return false;
} }
}) })