I am a beginner to android, i am building a application in which when the user presses a button, the contacts which is stored in the mobile are shown. When he selects a cont
Intent intent1 = new Intent(Intent.ACTION_PICK, Contacts.Phones.CONTENT_URI); startActivityForResult(intent1, PICK_CONTACT_RQCODE_OLD); startActivity(intent1);
This works in my implementation.