Home | History | Annotate | Download | only in app

Lines Matching defs:Intent

22 import android.content.Intent;
37 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
38 intent.setType("audio/*");
39 startActivity(Intent.createChooser(intent, "Select music"));
43 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
44 intent.setType("image/*");
45 startActivity(Intent.createChooser(intent, "Select image"));
49 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
50 intent.setType("*/*");
51 startActivity(Intent.createChooser(intent, "Select stream"));