I am trying to set up a message application such that:
- First we set up a message on PreferenceConnector and we receive the message then
- BroadcastReceiver checks that the message contents are equal then
- I want to get a PendingIntent.
try { if (PreferenceConnector.readString(context,"MSG","tempmsg2").equals(messages[0].getMessageBody())) { Intent i=new Intent(context, SecureMobiActivity.class); PendingIntent pi=PendingIntent.getBroadcast(context, 0, i, 0); } else { Toast.makeText(Remotelock.this, "message are not equal!", Toast.LENGTH_LONG).show(); } catch (Exception e) { // TODO: handle exception e.printStackTrace(); }