Home | History | Annotate | Download | only in ui

Lines Matching defs:intent

20 import android.content.Intent;
31 * Respond to a special intent and send an SMS message without the user's intervention.
38 // Intent should be redelivered if the process gets killed before completing the job.
45 protected void onHandleIntent(Intent intent) {
48 String action = intent.getAction();
54 Bundle extras = intent.getExtras();
60 String message = extras.getString(Intent.EXTRA_TEXT);
62 Uri intentUri = intent.getData();
70 intent.setClassName(this, "com.android.mms.ui.ComposeMessageActivityNoLockScreen");
71 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
72 startActivity(intent);