我正在从我的应用程序向使用 5 位手机号码的服务器发送一条短信。
在 4.2.2 操作系统上,它在弹出窗口下方询问我
已编辑
Q. 如何处理取消/确定按钮?
我正在从我的应用程序向使用 5 位手机号码的服务器发送一条短信。
在 4.2.2 操作系统上,它在弹出窗口下方询问我
已编辑
Q. 如何处理取消/确定按钮?
这应该工作...
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;
}