Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse("android.resource://com.hanuma/" + R.drawable.front);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
sharingIntent.putExtra(Intent.EXTRA_TITLE, "New Upcoming Android Game by Fundumobi.com!");
sharingIntent.putExtra(Intent.EXTRA_TEXT,"New Upcoming Android Game by Fundumobi.com!");
context.startActivity(Intent.createChooser(sharingIntent, "New Game"));
No comments:
Post a Comment