1

我一直在尝试使自动电话验证工作,但它没有填写验证。

public class MySMSBroadcastReceiver extends BroadcastReceiver { 



@Override public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.getExtras();

 if (bundle != null)

 { Status status = bundle.getParcelable(ReadSmsConstant.EXTRA_STATUS); if (status.getStatusCode() == CommonStatusCodes.TIMEOUT) { // Service has timed out and no SMS message that meets the requirement is read. Service ended. doSomethingWhenTimeOut(); } 

else if (status.getStatusCode() == CommonStatusCodes.SUCCESS) { 

if (bundle.containsKey(ReadSmsConstant.EXTRA_SMS_MESSAGE)) { 

// An SMS message that meets the requirement is read. Service ended. doSomethingWhenGetMessage(bundle.getString(ReadSmsConstant.EXTRA_SMS_MESSAGE)); } } } } }
4

1 回答 1

0

我们还需要一个完成回调来捕获消息以执行操作:

Task<Void> task = ReadSmsManager.start(MainActivity.this);
task.addOnCompleteListener(new OnCompleteListener<Void>() {
    @Override
    public void onComplete(Task<Void> task) {
        if (task.isSuccessful()) {
            // The service is enabled successfully. Continue with the process.
            doSomethingWhenTaskSuccess();
        }
    }
});
于 2021-03-25T17:27:49.857 回答