1

我想开发一个应用程序,其中的一小部分将从我设备收件箱中的 EditText 中搜索消息字符串......

我已经提到了一些链接,例如

搜索短信收件箱

https://stackoverflow.com/questions/8941228/how-to-read-all-sms-from-inbox-in-android-2-2-and-above

http://androidforums.com/android-applications/1773-how-read-sms-android.html

读取来自特定发件人的所有短信

但无法使它成为可能...任何人都可以帮助我提供一段有用的代码...在此先感谢。

4

1 回答 1

1

我终于得到了答案,但不知道它是否是最有效的解决方案。如果有更有效的解决方案,请纠正我。

我首先检查了收件箱中的特定文本到我在搜索框中插入的文本。如果文本匹配,那么我将其插入到 ArrayList 中。最后我打印整个 ArrayList。

public ArrayList<String> check(String str)
{

    boolean fullContainsSub = str.toUpperCase().indexOf(content.toUpperCase()) != -1;
    //String styledText = "This is <font color='red'>simple</font>.";
    //item.setText(Html.fromHtml(styledText), ListView.BufferType.SPANNABLE);

    if(fullContainsSub)
    {
     itemList.add(str);
    }
    return itemList;
}

这里str是收件箱中的文本,而内容将是搜索框文本。

于 2012-07-13T10:15:29.957 回答