Searched defs:sNotifications (Results 1 - 1 of 1) sorted by relevance

/packages/experimental/NotificationListenerSample/src/com/android/example/notificationlistener/
H A DListener.java60 private static ArrayList<StatusBarNotification> sNotifications; field in class:Listener
64 return sNotifications;
149 synchronized (sNotifications) {
152 sNotifications.add(delta.mSbn);
155 sNotifications.set(position, delta.mSbn);
158 Collections.sort(sNotifications, mRankingComparator);
159 Log.i(TAG, "finish with: " + sNotifications.size());
169 synchronized (sNotifications) {
172 sNotifications.remove(mTmpRanking.getRank());
175 Collections.sort(sNotifications, mRankingComparato
[all...]

Completed in 54 milliseconds