List of questions
Related questions
Question 63 - Associate Android Developer discussion
What is a correct part of an Implicit Intent for sharing data implementation?
A.
Intent sendIntent = new Intent(this, UploadService.class) sendIntent.putExtra(Intent.EXTRA_TEXT, textMessage);
B.
Intent sendIntent = new Intent(); sendIntent.setType(Intent.ACTION_SEND);
C.
Intent sendIntent = new Intent(this, UploadService.class) sendIntent.setData(Uri.parse(fileUrl));
D.
Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND);
Your answer:
0 comments
Sorted by
Leave a comment first