Lines Matching refs:intent
22 import android.content.Intent;
67 public IBinder onBind(Intent intent) {
72 public int onStartCommand(Intent intent, int flags, int startId) {
73 if (null == intent || null == intent.getAction()) {
76 String action = intent.getAction();
78 Bundle remoteInputResults = RemoteInput.getResultsFromIntent(intent);
101 Intent intent = new Intent(ACTION_RESPONSE);
102 PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent,
134 Intent intent = new Intent(MainActivity.ACTION_NOTIFY);
135 intent.putExtra(MainActivity.EXTRA_MESSAGE, message);
136 mBroadcastManager.sendBroadcast(intent);