如何验证“日志记录”使用 SMS 验证的 Android 应用程序

发布于 2024-12-08 03:44:46 字数 95 浏览 0 评论 0原文

在登录 Android 应用程序之前,我想输入我的号码并按按钮。 此按钮用于向输入的号码发送短信,因此,如果收到消息,它将进入应用程序,否则它将显示一条消息来验证/验证该号码。

Before logging to android Application I want to enter my number and press Button.
This button handled to send SMS to the number enteres, so if the message received to me it will enter the application, else it will show a message to validate/verify the number.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我也只是我 2024-12-15 03:44:46

我找到了解决方案。
使用BroadcastReceiver的onReceive方法

`

public void onReceive(Context context, Intent intent)
{
    //---get the SMS message passed in---
    Bundle bundle = intent.getExtras();
    if (bundle != null)
    {

    //---retrieve the SMS message received---
    Object[] pdus = (Object[]) bundle.get("pdus");
    msgs = SmsMessage.createFromPdu((byte[])pdus[0]);
     Log.i(TAG,  msgs.getMessageBody());
    Intent intent2 = new Intent("com.uba.messagereceived");
    str = "SMS From "+msgs.getOriginatingAddress()+":"+msgs.getMessageBody().toString()+"...";
    intent2.putExtra("letter", str);
    intent2.putExtra("address", msgs.getOriginatingAddress());
    intent2.putExtra("txt", msgs.getMessageBody().toString());
    context.sendBroadcast(intent2);

    } 
    //---display the new SMS message---
    Toast.makeText(context, str, Toast.LENGTH_SHORT).show();

if(yMsg == msgg &&  xNum == no)
    {
    setStatus("valid");
    Intent mp = new Intent(context,UserMainPage.class);
    context.startActivity(mp );
    Toast.makeText(context,"The Validation completed: "+this.getStatus(), Toast.LENGTH_SHORT).show();
    } 

else
    {
    setStatus("not Valid");
    Toast.makeText(context,"The Validation completed: "+this.getStatus(), Toast.LENGTH_SHORT).show();
    }

    }

`

I found the solution.
Using the onReceive method of BroadcastReceiver

`

public void onReceive(Context context, Intent intent)
{
    //---get the SMS message passed in---
    Bundle bundle = intent.getExtras();
    if (bundle != null)
    {

    //---retrieve the SMS message received---
    Object[] pdus = (Object[]) bundle.get("pdus");
    msgs = SmsMessage.createFromPdu((byte[])pdus[0]);
     Log.i(TAG,  msgs.getMessageBody());
    Intent intent2 = new Intent("com.uba.messagereceived");
    str = "SMS From "+msgs.getOriginatingAddress()+":"+msgs.getMessageBody().toString()+"...";
    intent2.putExtra("letter", str);
    intent2.putExtra("address", msgs.getOriginatingAddress());
    intent2.putExtra("txt", msgs.getMessageBody().toString());
    context.sendBroadcast(intent2);

    } 
    //---display the new SMS message---
    Toast.makeText(context, str, Toast.LENGTH_SHORT).show();

if(yMsg == msgg &&  xNum == no)
    {
    setStatus("valid");
    Intent mp = new Intent(context,UserMainPage.class);
    context.startActivity(mp );
    Toast.makeText(context,"The Validation completed: "+this.getStatus(), Toast.LENGTH_SHORT).show();
    } 

else
    {
    setStatus("not Valid");
    Toast.makeText(context,"The Validation completed: "+this.getStatus(), Toast.LENGTH_SHORT).show();
    }

    }

`

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文