Home | History | Annotate | Download | only in ui

Lines Matching refs:intent

18 import android.content.Intent;
32 Intent intent = getIntent();
33 if (intent == null) {
34 LogUtil.w(TAG, "No intent attached");
40 // Perform some action depending on the intent
41 String action = intent.getAction();
42 if (Intent.ACTION_SENDTO.equals(action)) {
43 // Build and send the intent
44 final Intent sendIntent = new Intent(this, NoConfirmationSmsSendService.class);
46 sendIntent.putExtras(intent);
48 sendIntent.setClipData(intent.getClipData());
52 LogUtil.w(TAG, "Unrecognized intent action: " + action);
55 // This activity should never stick around after processing the intent