Home | History | Annotate | Download | only in content

Lines Matching defs:intent

20 import android.content.Intent;
75 * Returns an {@link android.content.Intent} which can be used to share this item's content with other
79 * @return Intent to be given to a ShareActionProvider.
81 public Intent getShareIntent(Context context) {
82 Intent intent = new Intent(Intent.ACTION_SEND);
86 intent.setType("image/jpg");
88 intent.putExtra(Intent.EXTRA_STREAM, getContentUri());
92 intent.setType("text/plain");
93 // Get the string resource and bundle it as an intent extra
94 intent.putExtra(Intent.EXTRA_TEXT, context.getString(contentResourceId));
98 return intent;