我通过使用以下代码将电话簿联系人发送到我的应用程序。但我想选择多个联系人并将其上传到数据库..这可能吗?
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Intent contactPickerIntent = new Intent(Intent.ACTION_PICK,
Contacts.CONTENT_URI);
startActivityForResult(contactPickerIntent, CONTACT_PICKER_RESULT);
}
答案 0 :(得分:1)
当然有可能。 我想你想选择联系人信息然后保存。 试试这个 http://developer.android.com/guide/topics/providers/content-providers.html
检索联系人后,编写代码将其存储在数据库中