跳至主要內容

08.Intent显式与隐式

约 88 字小于 1 分钟

显式Intent(Explicit Intent):

Intent intent = new Intent(context, TargetActivity.class);
startActivity(intent);

隐式Intent(Implicit Intent)

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "这是一条文本消息");
startActivity(Intent.createChooser(intent, "选择一个应用"));

广播Intent(Broadcast Intent)

Intent intent = new Intent("com.example.ACTION_CUSTOM_BROADCAST");
intent.putExtra("message", "Hello, world!");
sendBroadcast(intent);

服务Intent(Service Intent):

Intent intent = new Intent(context, MyService.class);
startService(intent);