Home | History | Annotate | Download | only in widget

Lines Matching refs:shareIntent

58  * public void doShare(Intent shareIntent) {
60 * mShareActionProvider.setShareIntent(shareIntent);
268 * Intent shareIntent = new Intent(Intent.ACTION_SEND);
269 * shareIntent.setType("image/*");
271 * shareIntent.putExtra(Intent.EXTRA_STREAM, uri));</pre>
273 * @param shareIntent The share intent.
278 public void setShareIntent(Intent shareIntent) {
279 if (shareIntent != null) {
280 final String action = shareIntent.getAction();
282 shareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT |
288 dataModel.setIntent(shareIntent);