What is a correct part of an Implicit Intent for sharing data implementation?
Intent sendIntent = new Intent(this, UploadService.class) sendIntent.putExtra(Intent.EXTRA_TEXT, textMessage);
Intent sendIntent = new Intent(); sendIntent.setType(Intent.ACTION_SEND);
Intent sendIntent = new Intent(this, UploadService.class) sendIntent.setData(Uri.parse(fileUrl));
Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND);
Create the text message with a string
Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, textMessage); sendIntent.setType("text/plain");
Submit