Lines Matching refs:intent
26 import android.content.Intent;
181 * priority events such as incoming call, new sms, screen off intent,
253 protected void onNewIntent(Intent intent) {
255 setIntent(intent);
277 startService(new Intent(this, StkAppService.class).putExtras(args));
286 private void initFromIntent(Intent intent) {
288 if (intent != null) {
289 mTextMsg = intent.getParcelableExtra("TEXT");
290 mSlotId = intent.getIntExtra(StkAppService.SLOT_ID, -1);
325 Intent mAlarmIntent = new Intent(ALARM_TIMEOUT);
342 @Override public void onReceive(Context context, Intent intent) {
343 String action = intent.getAction();
344 int slotID = intent.getIntExtra(StkAppService.SLOT_ID, 0);