2

我需要创建一个像群消息这样的应用程序。为此,我正在使用 SmsManager 类。

我的代码看起来像

    static List<String> phone_num = new ArrayList<String>();
static List<String> SMS = new ArrayList<String>();

   @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
            readExcelFile(this, "/sdcard/Excel.xls");
    View readExcelButton = findViewById(R.id.buttonSend);
            readExcelButton.setOnClickListener(this);

}


      public void onClick(View v) {
        switch (v.getId()) {
        case R.id.buttonSend:
          for(int i=0;i<phone_num.size();i++)
            {
               SmsManager smsManager = SmsManager.getDefault();
               smsManager.sendTextMessage(phone_num.get(i),SMS.get(i), null, null);        
                }

  Toast.makeText(getBaseContext(), "Sendingfinished",Toast.LENGTH_SHORT).show();  


                break;
       default: break;
        }
    }

我的问题是,它是发送群短信的正确方法吗?或者我应该使用广播接收器创建pendingIntent 来监控发送过程并在for 循环内等待,直到每条消息发送完成再发送下一个。

提前致谢....

4

0 回答 0