1

我正在尝试开发一个应用程序来将收到的 SMS 转发到 Web API。我安装了 Go SMS,这是一个在我的手机中处理消息的应用程序。我的问题是,我无法同时运行这两个应用程序。会有什么问题?

我正在使用 onReceive(() 来处理收到的短信。是否可以同时运行这两个应用程序,还是我的代码中存在问题?如果 GO SMS 阻止了这一点,我如何在我的应用程序中执行相同的操作,以便我的应用程序得到优先于其他 SMS 应用程序?

我的接收代码是,

public void onReceive(Context context, Intent intent) {
final String telNumber="123456789";
final String message="message content comes here";
SmsManager sms= SmsManager.getDefault();
sms.sendTextMessage(telNumber, null, message, null, null);
postData(message);
}
public void postData(String url) {
    Create a new HttpClient and Post Header
    HttpClient httpclient = new DefaultHttpClient();
    HttpPost httppost = new HttpPost("http://mysite.com/index.php");

    try {
        // Add your data
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
        nameValuePairs.add(new BasicNameValuePair("message",url));
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

        // Execute HTTP Post Request
        HttpResponse response = httpclient.execute(httppost);

    } catch (ClientProtocolException e) {
        // TODO Auto-generated catch block
    } catch (IOException e) {
        // TODO Auto-generated catch block
    }
}
4

1 回答 1

0

GO SMS 会禁用来自其他应用的通知,因此您不会有两个 SMS 应用同时通知您。您需要指示您的用户(以及您自己)进入 GO SMS 并从其设置中禁用此功能。

于 2012-06-29T20:26:37.677 回答