I’m using this code for picking contacts:
contactsButton.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v)
{
Intent contactPickerIntent = new Intent(Intent.ACTION_PICK,
Contacts.CONTENT_URI);
startActivityForResult(contactPickerIntent, 1001);
}
});
In debug node I get “sorce not found” on startActivityForResult
Edit : works, just had to change BOTH code and emulator to API 5+
Try this: