Files
FairEmail/app/src/main/java/eu/faircode/email/Widget.java

78 lines
2.9 KiB
Java
Raw Normal View History

2018-10-21 18:29:28 +00:00
package eu.faircode.email;
/*
This file is part of FairEmail.
FairEmail 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.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-10-21 18:29:28 +00:00
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
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-10-21 18:29:28 +00:00
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-10-21 18:29:28 +00:00
*/
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.widget.RemoteViews;
2019-06-23 14:05:30 +02:00
import java.text.NumberFormat;
2019-05-06 22:34:18 +02:00
import static android.os.Process.THREAD_PRIORITY_BACKGROUND;
2018-10-21 18:29:28 +00:00
public class Widget extends AppWidgetProvider {
@Override
2018-11-05 15:28:30 +00:00
public void onUpdate(final Context context, final AppWidgetManager appWidgetManager, final int[] appWidgetIds) {
2019-05-06 22:34:18 +02:00
Thread thread = new Thread(new Runnable() {
2018-11-05 15:28:30 +00:00
@Override
public void run() {
DB db = DB.getInstance(context);
update(appWidgetIds, appWidgetManager, context, db.message().getUnseenUnified());
}
2019-05-12 12:11:36 +02:00
}, "widget:update");
2019-05-06 22:34:18 +02:00
thread.setPriority(THREAD_PRIORITY_BACKGROUND);
thread.start();
2018-10-21 18:29:28 +00:00
}
static void update(Context context, int count) {
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
2019-06-23 14:05:30 +02:00
int[] appWidgetIds = AppWidgetManager.getInstance(context).getAppWidgetIds(new ComponentName(context, Widget.class));
2018-10-21 18:29:28 +00:00
update(appWidgetIds, appWidgetManager, context, count);
}
private static void update(int[] appWidgetIds, AppWidgetManager appWidgetManager, Context context, int count) {
2018-12-06 15:27:30 +01:00
Intent view = new Intent(context, ActivityView.class);
view.setAction("unified");
view.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent pi = PendingIntent.getActivity(context, ActivityView.REQUEST_UNIFIED, view, PendingIntent.FLAG_UPDATE_CURRENT);
2019-06-23 14:05:30 +02:00
NumberFormat nf = NumberFormat.getIntegerInstance();
2018-10-21 18:29:28 +00:00
for (int id : appWidgetIds) {
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);
2019-06-23 14:05:30 +02:00
2018-10-21 18:29:28 +00:00
views.setOnClickPendingIntent(R.id.widget, pi);
2019-06-23 14:05:30 +02:00
if (count < 0)
views.setTextViewText(R.id.tvCount, "?");
2019-06-23 16:14:30 +02:00
else if (count > 99)
2019-06-23 14:05:30 +02:00
views.setTextViewText(R.id.tvCount, "");
else
views.setTextViewText(R.id.tvCount, nf.format(count));
2018-10-21 18:29:28 +00:00
appWidgetManager.updateAppWidget(id, views);
}
}
}