在我的Android項目,我需要檢測和讀取文本短信,因爲他們進來,然後調用另一個類的功能。Android的 - 如何使用廣播接收器來讀取短信?
我如何可以把下面的代碼在一個類,並在清單正確地定義它。如果我把它放在另一個Java文件上,那麼我不知道如何從另一個Java文件中調用一個函數。 我試圖把這個代碼在我的主類,但在我的應用程序,它只是墜毀。
public class SMSReceiverActivity extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// Parse the SMS.
Bundle bundle = intent.getExtras();
SmsMessage[] msgs = null;
String str = "";
if (bundle != null)
{
// Retrieve the SMS.
Object[] pdus = (Object[]) bundle.get("pdus");
msgs = new SmsMessage[pdus.length];
for (int i=0; i<msgs.length; i++)
{
msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);
// In case of a particular App/Service.
//if(msgs[i].getOriginatingAddress().equals("+91XXX"))
//{
//str += "SMS from " + msgs[i].getOriginatingAddress();
//str += " :";
str += msgs[i].getMessageBody().toString();
str += "\n";
//}
}
if (str != "") { // remove the last \n
str = str.substring(0, str.length()-1);
}
Reusable_CodeActivity.alert(my_ViewActivity.this, "AAAAAAAAAAA");
try {
//my_ViewActivity.this.handle_incoming_message(str);
} catch(Exception e) {
}
}
}
}
發佈你的清單文件。另外你的意思是「墜毀」? –