Lines Matching refs:Intents
1 page.title=Modifying Contacts Using Intents
27 <a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a>
87 {@link android.provider.ContactsContract.Intents.Insert#ACTION Intents.Insert.ACTION}.
94 Intent intent = new Intent(Intents.Insert.ACTION);
101 {@link android.provider.ContactsContract.Intents.Insert Intents.Insert}. The contacts app
117 intent.putExtra(Intents.Insert.EMAIL, mEmailAddress.getText())
122 .putExtra(Intents.Insert.EMAIL_TYPE, CommonDataKinds.Email.TYPE_WORK)
124 .putExtra(Intents.Insert.PHONE, mPhoneNumber.getText())
129 .putExtra(Intents.Insert.PHONE_TYPE, Phone.TYPE_WORK);
265 {@link android.provider.ContactsContract.Intents.Insert Intents.Insert}. Remember that some
293 any of the key values specified in {@link android.provider.ContactsContract.Intents.Insert
294 Intents.Insert}. The following code snippet shows how to construct and send the intent: