gpt4 book ai didi

java - 如何从我的 Android 设备获取未读短信/未接来电?

转载 作者:行者123 更新时间:2023-12-01 05:20:54 24 4
gpt4 key购买 nike

我一直在开发 Android 应用程序,我需要从我的 Android 设备获取未读短信/未接来电。有什么方法可以做到吗?我希望有一些内容提供商可以做到这一点。谢谢。

最佳答案

要获取短信读取计数。我认为这对您有用

  public static int getUnreadSmsCount(Context context) { 
String SMS_READ_COLUMN = "read";
String UNREAD_CONDITION = SMS_READ_COLUMN + "=0";
int count = 0;
Cursor cursor = context.getContentResolver().query(
SMS_INBOX_CONTENT_URI,
new String[] { SMS_ID },
UNREAD_CONDITION, null, null);
if (cursor != null) {
try {
count = cursor.getCount();
} finally {
cursor.close();
}
}
// We ignored the latest incoming message so add one to the
total count
// count += 1;
return count;
}

关于java - 如何从我的 Android 设备获取未读短信/未接来电?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10438349/

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