Open device contacts list at button click event

前端 未结 4 1820
名媛妹妹
名媛妹妹 2021-01-14 12:34

How can i open Android device contacts list at button click event.

4条回答
  •  鱼传尺愫
    2021-01-14 13:06

    Try this code..

        yourButton.setOnClickListener(new YouButtonEvent());
    
    
        class YouButtonEventimplements OnClickListener{
    
        @Override
        public void onClick(View v) {
    
            Intent it= new Intent(Intent.ACTION_PICK,  Contacts.CONTENT_URI);
    
            startActivityForResult(it, PICK_CONTACT);
    
        }
    
    }
    

提交回复
热议问题