アプリから 5 桁の携帯電話番号を使用するサーバーに SMS を送信しています。
4.2.2 os では、ポップアップの下に表示されます
編集済み
Q.キャンセル/OKボタンの扱いは?
アプリから 5 桁の携帯電話番号を使用するサーバーに SMS を送信しています。
4.2.2 os では、ポップアップの下に表示されます
編集済み
Q.キャンセル/OKボタンの扱いは?
これはうまくいくはずです...
switch (getResultCode()) {
// if cancel pressed then result code is 5
case 5:
System.out.println("Message cancelled........");
break;
// else if send pressed then result code will be one of these below cases
case Activity.RESULT_OK:
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
break;
}