Activities and Intents: Lesson 2
Activities and Intents: Lesson 2
Activities and
Intents
Lesson 2
● Intent—recap
● Implicit Intent overview
● Sending an implicit Intent
● Receiving an implicit Intent
Intent Action
Android
System
User has pressed Call button — start Activity that can make
a call (no data is passed in or returned)
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}
● Uri.parse("tel:8005551234")
● Uri.parse("geo:0,0?q=brooklyn%20bridge%2C%20brooklyn%2C%20ny")
● Uri.parse("http://www.android.com");
Uri documentation
2. Put extras
String query = edittext.getText().toString();
intent.putExtra(SearchManager.QUERY, query));