0
送信アプリケーションを作成しました。実際のデバイスなしでメッセージの送信を確認するにはどうすればよいですか?AndroidアプリケーションでSMSを送信する
sendSms.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
//Toast.makeText(getApplicationContext(),template+"and"+phoneNumber,Toast.LENGTH_LONG).show();
if (phoneNumber.length()>0 && template.length()>0)
{
sendSMS(phoneNumber, template);
}
else
Toast.makeText(getApplicationContext(), "please select name & template",Toast.LENGTH_SHORT).show();
}
private void sendSMS(String phoneNumber, String template)
{
PendingIntent pi = PendingIntent.getActivity(getApplicationContext(), 0,new Intent(getApplicationContext(),Test2Activity.class), 0);
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, template, pi, null);
}
});
おかげで多くのumeshは良い一日を持っています。 – Arpit
ようこそ。これで問題が解決した場合は、回答を受け入れることを検討してください。左側の目盛りをクリックします。マウスを動かすと、それが表示されます。 – Umesh
はい、ありがとうございました – Arpit