我正在尝试开发一个应用程序来将收到的 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
}
}