1

我追求的是:

  1. 让我的 Android 应用程序在收到短信时收到警报/提示。
  2. 从收件箱中获取最新消息。从那里我想扫描/过滤它,但我确信我可以解决这个问题。

任何人都可以建议从哪里开始?收件箱更改大小或收到新短信时会触发哪个警报?以及如何从收件箱中检索邮件?需要授予哪些权限?

4

2 回答 2

1

我的问题的答案主要在这里找到: http ://www.kaloer.com/incoming-sms-messages

希望这可以帮助其他人在未来寻找相同的答案。

于 2011-03-13T21:39:42.893 回答
0

我对这个问题的解决方案是:

public class MainActivity extends ListActivity {

   @Override
   protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);

       List<SmsData> smsList = new ArrayList<SmsData>();

       Uri uri = Uri.parse("content://sms/inbox");
       Cursor c= getContentResolver().query(uri, null, null ,null,null);
       startManagingCursor(c);

       // Read the sms data and store it in the list
       if(c.moveToFirst()) {
           for(int i=0; i < c.getCount(); i++) {
               SmsData sms = new SmsData();
               sms.setBody(c.getString(c.getColumnIndexOrThrow("body")).toString());
               sms.setNumber(c.getString(c.getColumnIndexOrThrow("address")).toString());
              // sms.setName(c.getString(c.getColumnIndexOrThrow("name")).toString());
               smsList.add(sms);

               c.moveToNext();
           }
       }
       c.close();

       // Set smsList in the ListAdapter
       setListAdapter(new ListAdapter(this, smsList));

   }

   @Override
   protected void onListItemClick(ListView l, View v, int position, long id) {
       SmsData sms = (SmsData)getListAdapter().getItem(position);

       Toast.makeText(getApplicationContext(), sms.getBody(), Toast.LENGTH_LONG).show();

   }

}
于 2013-02-16T09:51:59.110 回答