Home | History | Annotate | Download | only in tests

Lines Matching defs:intent

21 import android.content.Intent;
37 // without the user having to confirm or press a send button. This app uses the intent:
38 // com.android.mms.intent.action.SENDTO_NO_CONFIRMATION
103 Intent intent =
104 new Intent("com.android.mms.intent.action.MESSAGING_APP_NOTIFICATIONS");
105 startActivityForResult(intent, NOTIFICATIONS_REQUEST_CODE);
133 Intent intent = new Intent("com.android.mms.intent.action.SENDTO_NO_CONFIRMATION", uri);
134 intent.putExtra(Intent.EXTRA_TEXT, message);
135 intent.putExtra("exit_on_sent", true);
136 intent.putExtra("showUI", true);
137 startService(intent);
163 Intent intent = new Intent("com.android.mms.intent.action.SENDTO_NO_CONFIRMATION", uri);
164 intent.putExtra(Intent.EXTRA_TEXT, message);
165 startService(intent);
170 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
195 Intent intent =
196 new Intent("com.android.mms.intent.action.MESSAGING_APP_NOTIFICATIONS");
197 startActivity(intent);