Android中调用系统函数查找联系人

Android中调用系统函数查找联系人,具体代码:

Intent intent = new Intent();     
intent.setAction(Intent.ACTION_SEARCH);
intent.setPackage("com.android.contacts"); //设置查找包
intent.putExtra(SearchManager.QUERY, keyword); //传入查找的keyword
startActivity(intent);  

参考链接: http://www.eoeandroid.com/thread-73636-1-1.html

你可能感兴趣的:(Android中调用系统函数查找联系人)