跳转通讯录


加到通讯录监听里面

ntent intent = new Intent();

                intent.setAction(Intent.ACTION_VIEW);
                intent.setData(Contacts.People.CONTENT_URI);
                startActivity(intent);

猜你喜欢

转载自blog.csdn.net/qq_40848783/article/details/79931088