Android:显示来自警报管理器

时间:2015-12-12 10:54:33

标签: android notifications alarmmanager

我想从警报管理器处获取所有已注册的警报。

我在这里找到了一种可能的方法

  

出于调试目的,您可以从控制台使用adb shell dumpsys alarm

我从Android Studio控制台发送此命令,但收到消息:

  

bash:adb:未找到命令

我发现了这个方式:

final String tag_alarm = "tag_alarm";
Uri uri = Uri.parse("content://com.android.alarmclock/alarm");
Cursor c = getContentResolver().query(uri, null, null, null, null);
Log.i(tag_alarm, "no of records are " + c.getCount());
Log.i(tag_alarm, "no of columns are " + c.getColumnCount());
if (c != null) {
    String names[] = c.getColumnNames();
    for (String temp : names) {
        System.out.println(temp);
    }
    if (c.moveToFirst()) {
        do {
            for (int j = 0; j < c.getColumnCount(); j++) {
                Log.i(tag_alarm, c.getColumnName(j)
                        + " which has value " + c.getString(j));
            }
        } while (c.moveToNext());
    }
}

但是我得到这个日志:

  

E / ActivityThread:无法找到com.android.alarmclock

的提供商信息

我做错了什么?

0 个答案:

没有答案