gpt4 book ai didi

android - 如何使用警报管理器内容提供程序。

转载 作者:太空狗 更新时间:2023-10-29 15:18:23 24 4
gpt4 key购买 nike

当我使用 Alarma 管理器时。显示权限错误。请告诉我,我们必须在 list 文件中使用哪个权限。

我正在使用这段代码...

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

最佳答案

检查 LogCat 输出是否有错误。您会在那里准确地看到缺少的权限。如果您无法理解,请在此处粘贴输出。

关于android - 如何使用警报管理器内容提供程序。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10401907/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com