What is a correct part of an Implicit Intent for sharing data implementation?
A. val sendIntent = Intent(this, UploadService::class.java).apply { putExtra(Intent.EXTRA_TEXT, textMessage) ...
B. val sendIntent = Intent().apply { type = Intent.ACTION_SEND; ...
C. val sendIntent = Intent(this, UploadService::class.java).apply { data = Uri.parse(fileUrl) ...
D. val sendIntent = Intent().apply { action = Intent.ACTION_SEND ...
What is a correct part of an Implicit Intent for sharing data implementation?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What is a correct part of an Implicit Intent for sharing data implementation?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!