我想使用联系人选择器意图挑选联系人。此外,我想要在我的活动中添加联系人的功能。有意添加联系人,我想知道我们可以将这两者一起使用在android中的联系人应用程序中使用吗?
像这样:
我们可以使用联系人选择器以及添加联系人意图吗?谢谢..
答案 0 :(得分:0)
没有
ACTION_PICK
将允许您选择联系人。但是,您无法请求联系人选择器UI提供添加联系人选项。此外,即使拥有添加联系人选项,也不需要联系人选择器UI。
如果您想允许用户添加联系人,请让您自己的UI触发ACTION_INSERT
或ACTION_INSERT_OR_EDIT
活动:
/***
Copyright (c) 2008-2012 CommonsWare, LLC
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License.
From _The Busy Coder's Guide to Android Development_
https://commonsware.com/Android
*/
package com.commonsware.android.inserter;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.provider.ContactsContract.Contacts;
import android.provider.ContactsContract.Intents.Insert;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class ContactsInserter extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btn=(Button)findViewById(R.id.insert);
btn.setOnClickListener(onInsert);
}
View.OnClickListener onInsert=new View.OnClickListener() {
public void onClick(View v) {
EditText fld=(EditText)findViewById(R.id.name);
String name=fld.getText().toString();
fld=(EditText)findViewById(R.id.phone);
String phone=fld.getText().toString();
Intent i=new Intent(Intent.ACTION_INSERT_OR_EDIT);
i.setType(Contacts.CONTENT_ITEM_TYPE);
i.putExtra(Insert.NAME, name);
i.putExtra(Insert.PHONE, phone);
startActivity(i);
}
};
}