1

我正在尝试发送短信。代码运行但不发送任何短信。没有错误。请指导肯定出了什么问题。

package com.example.smsbomber;


import android.app.Activity;

import android.os.Bundle;
import android.telephony.SmsManager;
import android.view.Menu;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        sendSMS();
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    public void sendSMS() {
        String phoneNumber = "00923002228885";
        String message = "Hello World!";

        SmsManager smsManager = SmsManager.getDefault();
        smsManager.sendTextMessage(phoneNumber, null, message, null, null);
    }
}   
4

1 回答 1

0

检查您的号码一次。我认为您应该尝试从手机号码中删除起始位置的“00”。使用 try-catch() 来避免错误。只使用“923002228885”,或者如果你仍然没有收到消息,那么删除“92”也像“3002228885”。

我在 3 天前尝试过这个,它对我来说工作正常。但是请注意,我没有成功发送超过 160 个字符的消息,但在少于 160 个字符的情况下它工作正常。

try {
        SmsManager smsManager = SmsManager.getDefault();
        smsManager.sendTextMessage(String.valueOf(sender_PhoneNo),null, your_sms, null, null);
        Toast.makeText(getApplicationContext(),"SMS Sent!", Toast.LENGTH_LONG).show();
    } catch (Exception e) {
        Toast.makeText(getApplicationContext(),"SMS faild, please try again later!",Toast.LENGTH_LONG).show();
        e.printStackTrace();
    }

我使用这个链接作为参考。

希望它会帮助你。

于 2013-05-22T10:13:21.443 回答