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

102 lines
3.2 KiB
Java
Raw Normal View History

2018-11-07 08:09:05 +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.
FairEmail 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 FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-11-07 08:09:05 +00:00
*/
import android.annotation.TargetApi;
import android.content.Intent;
2018-11-09 16:05:10 +00:00
import android.graphics.drawable.Icon;
2018-11-07 08:09:05 +00:00
import android.os.Build;
import android.os.IBinder;
import android.service.quicksettings.Tile;
import android.service.quicksettings.TileService;
import java.util.List;
import androidx.lifecycle.LifecycleService;
2018-12-05 11:50:07 +01:00
import androidx.lifecycle.LiveData;
2018-11-07 08:09:05 +00:00
import androidx.lifecycle.Observer;
@TargetApi(Build.VERSION_CODES.N)
2018-11-07 12:10:58 +00:00
public class ServiceTileUnseen extends TileService {
2018-12-05 11:50:07 +01:00
private LifecycleService owner = new LifecycleService();
private LiveData<List<TupleMessageEx>> liveMessages;
2018-11-07 08:09:05 +00:00
@Override
public void onCreate() {
owner.onCreate();
super.onCreate();
}
@Override
public IBinder onBind(Intent intent) {
owner.onBind(intent);
return super.onBind(intent);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
owner.onStartCommand(intent, flags, startId);
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
owner.onDestroy();
super.onDestroy();
}
public void onStartListening() {
2018-12-24 12:27:45 +00:00
Log.i("Start tile unseen");
liveMessages = DB.getInstance(this).message().liveUnseenNotify();
2018-12-05 11:50:07 +01:00
liveMessages.observe(owner, new Observer<List<TupleMessageEx>>() {
2018-11-07 08:09:05 +00:00
@Override
public void onChanged(List<TupleMessageEx> messages) {
2018-12-24 12:27:45 +00:00
Log.i("Update tile unseen=" + messages.size());
2018-11-07 12:10:58 +00:00
2018-11-07 08:09:05 +00:00
Tile tile = getQsTile();
if (tile != null) {
tile.setState(messages.size() > 0 ? Tile.STATE_ACTIVE : Tile.STATE_INACTIVE);
2018-11-09 16:05:10 +00:00
tile.setIcon(Icon.createWithResource(ServiceTileUnseen.this,
messages.size() > 0 ? R.drawable.baseline_mail_24 : R.drawable.baseline_mail_outline_24));
2018-11-07 08:09:05 +00:00
tile.setLabel(getResources().getQuantityString(
R.plurals.title_tile_unseen, messages.size(), messages.size()));
tile.updateTile();
}
}
});
}
public void onStopListening() {
2018-12-24 12:27:45 +00:00
Log.i("Stop tile unseen");
2018-12-05 14:36:18 +01:00
if (liveMessages != null) {
2018-12-05 11:50:07 +01:00
liveMessages.removeObservers(owner);
2018-12-05 14:36:18 +01:00
liveMessages = null;
}
2018-11-07 08:09:05 +00:00
}
public void onClick() {
2018-12-24 12:27:45 +00:00
Log.i("Click tile unseen");
2018-11-07 08:09:05 +00:00
Intent clear = new Intent(this, ServiceSynchronize.class);
clear.setAction("clear");
startService(clear);
}
}