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());
}