summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Spurlock <jspurlock@google.com>2014-03-24 18:02:43 -0400
committerJohn Spurlock <jspurlock@google.com>2014-03-25 13:01:20 -0400
commitf02616f3975fbfb91ebfc2877e7d4d1cb80661fc (patch)
tree1f9f29ef2c1b142b012956e95c9f61d121781c8f /src
parent55985d2ceca9cecfbc07bb331bf48fe28849b818 (diff)
downloadpackages_apps_Settings-f02616f3975fbfb91ebfc2877e7d4d1cb80661fc.zip
packages_apps_Settings-f02616f3975fbfb91ebfc2877e7d4d1cb80661fc.tar.gz
packages_apps_Settings-f02616f3975fbfb91ebfc2877e7d4d1cb80661fc.tar.bz2
Settings: Implement new required method.
Only required since it uses the non-public version of the api. Bug:13562828 Change-Id: I63230962ac886465b3a1a2721e65b1d3fac33707
Diffstat (limited to 'src')
-rw-r--r--src/com/android/settings/NotificationStation.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/android/settings/NotificationStation.java b/src/com/android/settings/NotificationStation.java
index 10457b9..5083e27 100644
--- a/src/com/android/settings/NotificationStation.java
+++ b/src/com/android/settings/NotificationStation.java
@@ -71,6 +71,10 @@ public class NotificationStation extends SettingsPreferenceFragment {
private INotificationListener.Stub mListener = new INotificationListener.Stub() {
@Override
+ public void onListenerConnected(String[] notificationKeys) throws RemoteException {
+ // noop
+ }
+ @Override
public void onNotificationPosted(StatusBarNotification notification) throws RemoteException {
Log.v(TAG, "onNotificationPosted: " + notification);
final Handler h = getListView().getHandler();