I want to create 3 TextView field and every each of TextView field display the selected contact number. I succeed with 1 TextView only but I have no idea to deal with multiple contacts.
contactNumber = (TextView) findViewById(R.id.contactnumber);
Button buttonPickContact = (Button)findViewById(R.id.pickcontact);
buttonPickContact.setOnClickListener(new Button.OnClickListener(){
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE);
startActivityForResult(intent, 1);
}});
below shows how I display the hp number just for 1 contact, but how to display multiple phone number ? For example, TextView1 display 123, TextView2 display 456 and so on.
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if(requestCode == RQS_PICK_CONTACT){
if(resultCode == RESULT_OK){
Uri contactData = data.getData();
Cursor cursor = managedQuery(contactData, null, null, null, null);
cursor.moveToFirst();
String number = cursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.NUMBER));
//contactName.setText(name);
contactNumber.setText(number);
//contactEmail.setText(email);
}
}
}
You simply run your code three times, and on each one use a different
TextView
id,Button
id, andRequestCode
.You can use a helper method, like this:
Call it 3 times, for each
TextView
-Button
pair:Then handle the
ActivityResult
per therequestCode
(move your existing update code to a method calledupdateTextView
):