Home | History | Annotate | Download | only in service

Lines Matching defs:intent

21 import android.content.Intent;
32 Intent intent = new Intent();
33 intent.setComponent(new ComponentName(this, MainInteractionService.class));
34 intent.putExtra(Utils.EXTRA_REGISTER_RECEIVER, true);
35 intent.putExtra(Utils.TESTCASE_TYPE, getIntent().getStringExtra(Utils.TESTCASE_TYPE));
36 intent.putExtra(Utils.DISPLAY_WIDTH_KEY,
38 intent.putExtra(Utils.DISPLAY_HEIGHT_KEY,
41 ComponentName serviceName = startService(intent);