Lines Matching refs:intent
22 import android.content.Intent;
40 public void onReceive(Context context, Intent intent) {
41 if (MessagingService.REPLY_ACTION.equals(intent.getAction())) {
42 int conversationId = intent.getIntExtra(MessagingService.CONVERSATION_ID, -1);
43 CharSequence reply = getMessageText(intent);
64 * Get the message text from the intent.
65 * Note that you should call {@code RemoteInput#getResultsFromIntent(intent)} to process
68 private CharSequence getMessageText(Intent intent) {
69 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);