revert accidentially commited stuff
This commit is contained in:
parent
053b9553bc
commit
ec1f539267
|
@ -56,6 +56,7 @@ public class NotificationListener extends NotificationListenerService {
|
|||
private LimitedQueue mActionLookup = new LimitedQueue(16);
|
||||
|
||||
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
|
||||
@SuppressLint("NewApi")
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
String action = intent.getAction();
|
||||
|
@ -68,7 +69,7 @@ public class NotificationListener extends NotificationListenerService {
|
|||
StatusBarNotification[] sbns = NotificationListener.this.getActiveNotifications();
|
||||
int handle = intent.getIntExtra("handle", -1);
|
||||
for (StatusBarNotification sbn : sbns) {
|
||||
if (sbn.getId() == handle) {
|
||||
if ((int) sbn.getPostTime() == handle) {
|
||||
if (action.equals(ACTION_OPEN)) {
|
||||
try {
|
||||
PendingIntent pi = sbn.getNotification().contentIntent;
|
||||
|
@ -91,7 +92,7 @@ public class NotificationListener extends NotificationListenerService {
|
|||
StatusBarNotification[] sbns = NotificationListener.this.getActiveNotifications();
|
||||
int handle = intent.getIntExtra("handle", -1);
|
||||
for (StatusBarNotification sbn : sbns) {
|
||||
if (sbn.getId() == handle) {
|
||||
if ((int) sbn.getPostTime() == handle) {
|
||||
if (GBApplication.isRunningLollipopOrLater()) {
|
||||
String key = sbn.getKey();
|
||||
NotificationListener.this.cancelNotification(key);
|
||||
|
@ -275,7 +276,8 @@ public class NotificationListener extends NotificationListenerService {
|
|||
LOG.info("Processing notification from source " + source);
|
||||
|
||||
dissectNotificationTo(notification, notificationSpec);
|
||||
notificationSpec.id = sbn.getId();
|
||||
notificationSpec.id = (int) sbn.getPostTime(); //FIMXE: a truly unique id would be better
|
||||
|
||||
NotificationCompat.WearableExtender wearableExtender = new NotificationCompat.WearableExtender(notification);
|
||||
List<NotificationCompat.Action> actions = wearableExtender.getActions();
|
||||
for (NotificationCompat.Action act : actions) {
|
||||
|
|
Loading…
Reference in New Issue