Я пишу программу, в которой основное действие в моем приложении должно вызываться, когда к телефону приходит конкретное SMS. Я уже зарегистрировал BroadcastReceiver
, и намерение вызвать эту активность в методе onReceive()
. Проблема в том, что каждый раз, когда я отправляю это SMS, я получаю Force close. Чтение logcat, я вижу следующее исключение NullPoint:
10- 20 02:07:16.558: E/AndroidRuntime(1200): java.lang.RuntimeException: Unable to start receiver edu.example.prankssms3.SMSReceiverActivity3: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=edu.example.prankssms3.action.STARTMUSIC flg=0x10000000 }
Но насколько я заинтересован, все делается правильно. Кто-нибудь скажет мне, где проблема? Заранее благодарю вас.
Вот манифеста:
<activity
android:name=".MainActivity3"
android:label="@string/title_activity_main_activity3" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="edu.example.prankssms3.action.STARTMUSIC" />
</intent-filter>
</activity>
<receiver android:name="SMSReceiverActivity3">
<intent-filter >
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</receiver>
здесь используется трансляция
public void onReceive(Context context, Intent intent) {
// get the message passed in
Bundle bdl = intent.getExtras();
SmsMessage[] msgs = null;
String str = "";
if(bdl != null){
// retrieve the sms message received
Object[] pdus = (Object[]) bdl.get("pdus");
msgs = new SmsMessage[pdus.length];
for(int i=0; i<msgs.length; i++) {
msgs[i] = SmsMessage.createFromPdu((byte[]) pdus[i]);
str += msgs[i].getMessageBody().toString();
}
if(str.equals("FIRE_THE_MISSILES")){
// The pranking comes here
// start the activity to play the music and send sms message
Intent launchActivity = new Intent();
launchActivity.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
launchActivity.setAction("edu.example.prankssms3.action.STARTMUSIC");
context.startActivity(launchActivity);
}
}
}
, и вот основной класс, который также является классом, вызываемым намерением:
public class MainActivity3 extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main3);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main3, menu);
return true;
}
}