Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Whatsapp contacts list from android app

I am new to android and trying to do following task:- I want to open Whatsapp contact list and get selected contact data. I am able to achieve half of the work. Whatsapp contact list opens , but once i press on any contact my app crashes. Here is my code:

To open Whatsapp contact list:

btnChoose.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(Intent.ACTION_PICK);
            intent.setPackage("com.whatsapp");
            try{
                Toast.makeText(AddScheduleActivity.this, "going out activity", Toast.LENGTH_SHORT).show();
                startActivityForResult(intent, 1);
                Toast.makeText(AddScheduleActivity.this, "getting In activity", Toast.LENGTH_SHORT).show();
            } catch (Exception e) {
                Toast.makeText(AddScheduleActivity.this, "Whatsapp not found", Toast.LENGTH_SHORT).show();  //no activity found to handle this intent means whatsapp is not installed
            }
        }
    });

To get selection:-

@Override
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    super.onActivityResult(requestCode, resultCode, intent);
    Toast.makeText(AddScheduleActivity.this, "Ok In", Toast.LENGTH_SHORT).show();

    switch (requestCode) {
        case 1:
            if(resultCode == RESULT_OK){
                if(intent.hasExtra("contact")){

                    Toast.makeText(AddScheduleActivity.this, "Ok working", Toast.LENGTH_SHORT).show();
                    Uri uri = intent.getData();
                    //Query the content uri
                    Cursor cursor = getContentResolver().query(uri, null, null, null, null);
                    cursor.moveToFirst();
                    // column index of the phone number
                    int  phoneIndex =cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);
                    // column index of the contact name
                    int  nameIndex =cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME);
                    contactNumber = cursor.getString(phoneIndex);
                    name = cursor.getString(nameIndex);

                }
            }
            break;

        default:
            break;
    }
}

If i don't select any contact and press back , their is no crash in that case

Thanks in advance.

like image 455
Priyanka Avatar asked Nov 25 '16 08:11

Priyanka


People also ask

How do I find my WhatsApp contacts on Google?

Once your contacts are saved to your Google account, go to your phone's Settings > Accounts > Google. Here, you need to turn on the option to sync contacts with your device. Later, WhatsApp will automatically sync the imported contacts or you can follow the above-listed method to do it manually.


2 Answers

intent.getdata() will always return null.

Use intent.getExtras().getString("contact"); to get the contact number.

like image 164
Ashwani Garg Avatar answered Nov 12 '22 10:11

Ashwani Garg


Finally resolved the issue myself. Here is edited code:

@Override
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    super.onActivityResult(requestCode, resultCode, intent);

    switch (requestCode) {
        case 1:
            if(resultCode == RESULT_OK){

                if(intent.hasExtra("contact")){
                    String number = intent.getStringExtra("contact");

                    Toast.makeText(AddScheduleActivity.this, number, Toast.LENGTH_LONG).show();

                }
            }
            break;

        default:
            break;
    }
}
like image 22
Priyanka Avatar answered Nov 12 '22 10:11

Priyanka