Lines Matching full:shareintent
125 Intent shareIntent = new Intent();
126 shareIntent.setAction(Intent.ACTION_SEND);
127 shareIntent.putExtra(Intent.EXTRA_STREAM, uriToImage);
128 shareIntent.setType("image/jpeg");
129 startActivity(Intent.createChooser(shareIntent, getResources().getText(R.string.send_to)));
177 Intent shareIntent = new Intent();
178 shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
179 shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);
180 shareIntent.setType("image/*");
181 startActivity(Intent.createChooser(shareIntent, "Share images to.."));