Home | History | Annotate | Download | only in hcgallery

Lines Matching defs:Intent

24 import android.content.Intent;
180 Intent intent = new Intent(getActivity(), MainActivity.class);
181 intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); // Reuse the existing instance
182 startActivity(intent);
298 * and then invoke the appropriate share intent.
346 * intent to share the photo. This code is run on the main (UI) thread.
354 Intent shareIntent = new Intent(Intent.ACTION_SEND);
355 shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(tempFile));
357 startActivity(Intent.createChooser(shareIntent, "Share photo"));