当我使用Alarma Manager时。显示权限错误。请告诉我,我们必须在清单文件中使用哪个权限。
我正在使用此代码...
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());
}
答案 0 :(得分:0)
检查LogCat输出是否有错误。您将看到确切的缺失权限。如果你无法弄清楚这里粘贴输出。