Home | History | Annotate | Download | only in activity

Lines Matching defs:Intent

21 import android.content.Intent;
135 startActivity(new Intent(this, Preferences.class));
137 Intent intent = new Intent(Intent.ACTION_SEND);
138 intent.putExtra(Intent.EXTRA_TEXT, getAsString().toString());
139 intent.putExtra(Intent.EXTRA_SUBJECT, "Logcat Dump");
140 intent.setType("text/plain");
141 startActivity(Intent.createChooser(intent, "Send Logcat to:"));