Я занимаюсь разработкой приложения под названием «Безопасность женщин», в котором я хочу отправить сообщение на несколько мобильных номеров, хранящихся в базе данных. Может кто-нибудь сказать мне, как это сделать? Это мой код отправки: -
@Override
public void onClick(View arg0) {
String num = phn.getText().toString().trim();
String msg = message.getText().toString().trim();
//Getting intent and PendingIntent instance
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
PendingIntent pi = PendingIntent.getActivity(getApplicationContext(), 0, intent, 0);
//Get the SmsManager instance and call the sendTextMessage method to send message
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(num, null, msg, pi, null);
Toast.makeText(getApplicationContext(), "Message Sent successfully!",
Toast.LENGTH_LONG).show();
}
});```
This my Listview :-
publi c void viewAll () {
ArrayList<String> theList = new ArrayList<>();
Cursor res = myDb.getAllData();
theList.clear();
while(res.moveToNext()) {
theList.add( res.getString(2));
ArrayAdapter<String> listAdapter = new ArrayAdapter<>( Main2Activity.this, android.R.layout.simple_list_item_1, theList);
listView.setAdapter(listAdapter);
}
}