android另一个类sendSMS并调用Mainactivity错误

时间:2015-11-25 20:31:03

标签: java android sms send smsmanager

我想在MainActivity.java中调用sendSMS.java 我是初学者,我只是从这个网站和谷歌复制粘贴代码... 但是当我想分别创建SendSMS类和调用方法sendSMS(消息,电话)时,我收到了错误......

当我把sendSMS()放到MainActivity时工作得很好......

MainActivity {
//some code here
SendSMS some = new SendSMS();
some.sendSMS(message,phone);
//some code here
}

public class SendSMS extends AppCompatActivity  {
public void sendSMS(String message, String phone) {

    String phoneNo = phone;
    String message = message;

    try {
        PendingIntent sentPI = PendingIntent.getBroadcast(this, 0, new Intent("SMS_SENT"), 0);

        registerReceiver(new BroadcastReceiver()
        {
            @Override
            public void onReceive(Context arg0, Intent arg1)
            {
                int resultCode = getResultCode();
                switch (resultCode)
                {
                    case Activity.RESULT_OK: {
                        Toast.makeText(getBaseContext(), "Message SENT!",Toast.LENGTH_LONG).show();
                    }
                    break;
                    case SmsManager.RESULT_ERROR_GENERIC_FAILURE:  Toast.makeText(getBaseContext(), "Generic failure",Toast.LENGTH_LONG).show();
                        break;
                    case SmsManager.RESULT_ERROR_NO_SERVICE:       Toast.makeText(getBaseContext(), "No service",Toast.LENGTH_LONG).show();
                        break;
                    case SmsManager.RESULT_ERROR_NULL_PDU:         Toast.makeText(getBaseContext(), "Null PDU",Toast.LENGTH_LONG).show();
                        break;
                    case SmsManager.RESULT_ERROR_RADIO_OFF:        Toast.makeText(getBaseContext(), "Radio off",Toast.LENGTH_LONG).show();
                        break;
                }
            }
        }, new IntentFilter("SMS_SENT"));
        SmsManager smsMgr = SmsManager.getDefault();
        smsMgr.sendTextMessage(phoneNo, null, message, sentPI, null);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

我有这个错误:

W/System.err: java.lang.NullPointerException
W/System.err:     at android.content.ContextWrapper.getPackageName(ContextWrapper.java:135)
W/System.err:     at android.app.PendingIntent.getBroadcastAsUser(PendingIntent.java:478)
W/System.err:     at android.app.PendingIntent.getBroadcast(PendingIntent.java:467)
W/System.err:     at com.example.sendersms.SendSMS.sendSMS(SendSMS.java:84)
W/System.err:     at com.example.sendersms.MainActivity.takeJSON(MainActivity.java:216)
W/System.err:     at com.example.sendersms.MainActivity$1$1.run(MainActivity.java:90)
W/System.err:     at android.os.Handler.handleCallback(Handler.java:733)
W/System.err:     at android.os.Handler.dispatchMessage(Handler.java:95)
W/System.err:     at android.os.Looper.loop(Looper.java:136)
W/System.err:     at android.app.ActivityThread.main(ActivityThread.java:5001)
W/System.err:     at java.lang.reflect.Method.invokeNative(Native Method)
W/System.err:     at java.lang.reflect.Method.invoke(Method.java:515)
W/System.err:     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
W/System.err:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
W/System.err:     at dalvik.system.NativeStart.main(Native Method)

3 个答案:

答案 0 :(得分:1)

永远不要使用new实例化活动。该实例不会被初始化为活动,也不能用于您想要活动的任何内容。

修复您的代码:

  • 删除extends AppCompatActivity

  • 由于您的sendSMS()方法需要Context,因此请将其作为参数传递:

    public void sendSMS(Context context, String message, String phone) { ...
    
  • 在来电者中,传递Context。例如,在有效的Activity

    sendSMS(this, 
    
  • 在需要Context的地方使用param,例如

    PendingIntent.getBroadcast(context, ...
    

答案 1 :(得分:0)

自您扩展AppCompatActivity以来,SendSMS是一个活动。您必须在AndroidManifest.xml文件中注册Activity类。您不应该实例化一个活动。你应该通过Intents与它交谈。 Android实例化Activity,以便它可以连接Context和其他依赖项。您的NullPointerException正在发生,因为您实例化了SendSMS,并且Android没有连接任何Activity的依赖项。

答案 2 :(得分:0)

Laalto帮助我找到问题的解决方案...... 完整答案是

在MainActivity类中

SendSMS smsclass = new SendSMS(this);
smsclass.method();
在SendSMS课程中

private Context mContext;
public SendSMS() {
    super();
}
protected SendSMS(Context context){
    mContext = context;
}

我不知道这是如何工作但对我有用

再次感谢laalto!