diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java b/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java index 70e2aac..ec39aab 100644 --- a/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java +++ b/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java @@ -28,6 +28,7 @@ import android.os.Bundle; import android.os.Environment; import android.os.Vibrator; import android.os.Handler; +import android.os.UserHandle; import android.util.Log; import android.net.Uri; import android.os.SystemClock; @@ -798,7 +799,8 @@ public class NotificationTestList extends TestActivity null, 100, n, - idOut); + idOut, + UserHandle.myUserId()); } catch (android.os.RemoteException ex) { // oh well } @@ -822,7 +824,8 @@ public class NotificationTestList extends TestActivity null, 200, n, - idOut); + idOut, + UserHandle.myUserId()); } catch (android.os.RemoteException ex) { // oh well } @@ -846,7 +849,8 @@ public class NotificationTestList extends TestActivity null, 1, n, - idOut); + idOut, + UserHandle.myUserId()); } catch (android.os.RemoteException ex) { // oh well } |