当我使用警报管理器时。显示权限错误。请告诉我,我们必须在清单文件中使用哪个权限。
我正在使用此代码...
Uri uri = Uri.parse("content://com.android.deskclock/alarm");
Cursor c = getContentResolver().query(uri, null, null, null, null);
if (c != null)
{
String names[] = c.getColumnNames();
for (String temp : names) {
System.out.println(temp);
}
if (c.moveToFirst()) {
do {
int i = 0;
for (int j = 0; j < c.getColumnCount(); j++)
{
c.getString(j));
}
} while (c.moveToNext());
}