1

連絡先ピッカー インテントを使用して連絡先を選択したいと考えています。また、アクティビティに連絡先を追加する機能が必要です。連絡先を追加する意図がありますが、Androidの連絡先アプリで使用されているように、これを両方一緒に使用できることを知りたいですか?

このような:

ここに画像の説明を入力

連絡先ピッカーを使用して、連絡先の意図を追加できますか? ありがとうございました..

4

1 に答える 1

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);
    }
  };
}

(この古いサンプル プロジェクトから)

于 2016-06-22T12:39:04.240 に答える