gpt4 book ai didi

java - 从模拟器读取短信

转载 作者:行者123 更新时间:2023-11-29 09:08:51 29 4
gpt4 key购买 nike

无法从模拟器读取短信。我需要能够将短信的“正文”转换为字符串以显示在 TextView 或 EditView 中。我不是要使用“onRecieve”短信,而是要阅读短信。我可以通过 DDMS Devices Emulator Control(Windows7) 或使用 2 个模拟器发送到模拟器,即从端口 5554 发送到端口 5556。消息显示在模拟器中,但是当我尝试读取短信时,cursor.getCount( ) 只返回 O,即使“正文”(即短信文本)显示在模拟器上。我认为 cursor.getCount() 必须等于 1 或更大才能读取短信,但它仅 = 0。我该怎么做才能使模拟器显示 cursor.getCount() > 0,并允许我实际阅读短信正文?即如何使下面的代码工作。使用模拟器时,计数显示为 0,即使我已发送短信:

if(count>0){
if(cursor.moveToFirst()){
body = cursor.getString(cursor.getColumnIndexOrThrow("body")).toString();
txtLastSMS.setText(body);
}
}

相关代码如下:

    Uri CONTENT_URI = Uri.parse("content://sms/sent");    
Cursor cursor = getContentResolver().query(CONTENT_URI, null, null, null, null);
String body = null;
if (cursor != null)
try
{
int count = cursor.getCount();
if(count>0){
if(cursor.moveToFirst()){
body = cursor.getString(cursor.getColumnIndexOrThrow("body")).toString();
txtLastSMS.setText(body);
}
}
}
finally{ cursor.close();}

最佳答案

尝试使用 startManagingCursor:

Cursor cursor = getContentResolver().query(CONTENT_URI, null, null, null,     null);
startManagingCursor(cursor);

关于java - 从模拟器读取短信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13444097/

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