인텐트를 사용하여 연락처 수정

이 과정에서는 Intent를 사용하여 새 연락처를 삽입하거나 수정할 수 있습니다. 연락처 제공자에 직접 액세스하는 대신 Intent에서 적절한 Activity를 실행하는 연락처 앱을 시작합니다. 본 강의에서 설명한 수정 작업의 경우 Intent에서 확장 데이터를 전송하면 시작된 Activity입니다.

Intent를 사용하여 단일 연락처를 삽입하거나 업데이트하는 것이 좋습니다. 연락처 제공자를 수정하는 방법을 소개했습니다.

  • 고유 UI 및 코드를 개발하는 데 소요되는 시간과 노력을 절약할 수 있습니다.
  • 연락처 제공자의 규칙
  • 요청해야 하는 권한의 수가 줄어듭니다. 앱에 권한이 필요하지 않음 수정을 해야 하기 때문입니다. 이미 해당 권한이 있는 프로젝트입니다.

인텐트를 사용하여 새 연락처 삽입

앱에서 새 데이터를 받으면 사용자가 새로운 연락처를 삽입하도록 허용하고 싶은 경우가 자주 있습니다. 대상 예를 들어 음식점 리뷰 앱을 사용하면 사용자가 음식점을 예약할 때 연락처로 추가할 수 있습니다. 있습니다. 인텐트를 사용하여 이 작업을 하려면 사용할 수 있는 데이터를 최대한 많이 사용하여 인텐트를 만든 후 연락처 앱으로 전송합니다.

연락처 앱을 사용하여 연락처를 삽입하면 새 원시 연락처가 연락처 제공자의 ContactsContract.RawContacts 테이블에 삽입됩니다. 필요한 경우 연락처 앱에서 사용자에게 원시 연락처를 만들 때 사용할 계정 유형 및 계정을 요청하는 메시지를 표시합니다. 또한 연락처 앱은 사용자에게 원시 연락처가 이미 있는지 여부를 알립니다. 그러면 사용자는 삽입을 취소할 수 있습니다. 이 경우 연락처가 생성되지 않습니다. 배우기 위해 원시 연락처에 대해 자세히 알아보려면 연락처 제공자 API 가이드를 참조하세요.

인텐트 만들기

시작하려면 Intents.Insert.ACTION 작업으로 새 Intent 객체를 만듭니다. MIME 유형을 RawContacts.CONTENT_TYPE으로 설정합니다. 예를 들면 다음과 같습니다.

Kotlin

...
// Creates a new Intent to insert a contact
val intent = Intent(ContactsContract.Intents.Insert.ACTION).apply {
    // Sets the MIME type to match the Contacts Provider
    type = ContactsContract.RawContacts.CONTENT_TYPE
}

자바

...
// Creates a new Intent to insert a contact
Intent intent = new Intent(ContactsContract.Intents.Insert.ACTION);
// Sets the MIME type to match the Contacts Provider
intent.setType(ContactsContract.RawContacts.CONTENT_TYPE);

전화번호나 이메일 주소와 같은 연락처 세부정보가 이미 있는 경우 인텐트에 확장 데이터로 삽입할 수 있습니다. 키 값으로는 Intents.Insert 연락처 앱 사용자가 추가 수정 및 추가를 할 수 있도록 삽입 화면에 데이터를 표시합니다.

Kotlin

private var emailAddress: EditText? = null
private var phoneNumber: EditText? = null
...
/* Assumes EditText fields in your UI contain an email address
 * and a phone number.
 *
 */
emailAddress = findViewById(R.id.email)
phoneNumber = findViewById(R.id.phone)
...
/*
 * Inserts new data into the Intent. This data is passed to the
 * contacts app's Insert screen
 */
intent.apply {
    // Inserts an email address
    putExtra(ContactsContract.Intents.Insert.EMAIL, emailAddress?.text)
    /*
     * In this example, sets the email type to be a work email.
     * You can set other email types as necessary.
     */
    putExtra(
            ContactsContract.Intents.Insert.EMAIL_TYPE,
            ContactsContract.CommonDataKinds.Email.TYPE_WORK
    )
    // Inserts a phone number
    putExtra(ContactsContract.Intents.Insert.PHONE, phoneNumber?.text)
    /*
     * In this example, sets the phone type to be a work phone.
     * You can set other phone types as necessary.
     */
    putExtra(
            ContactsContract.Intents.Insert.PHONE_TYPE,
            ContactsContract.CommonDataKinds.Phone.TYPE_WORK
    )
}

자바

private EditText emailAddress = null;
private EditText phoneNumber = null;
...
/* Assumes EditText fields in your UI contain an email address
 * and a phone number.
 *
 */
emailAddress = (EditText) findViewById(R.id.email);
phoneNumber = (EditText) findViewById(R.id.phone);
...
/*
 * Inserts new data into the Intent. This data is passed to the
 * contacts app's Insert screen
 */
// Inserts an email address
intent.putExtra(ContactsContract.Intents.Insert.EMAIL, emailAddress.getText())
/*
 * In this example, sets the email type to be a work email.
 * You can set other email types as necessary.
 */
      .putExtra(ContactsContract.Intents.Insert.EMAIL_TYPE,
            ContactsContract.CommonDataKinds.Email.TYPE_WORK)
// Inserts a phone number
      .putExtra(ContactsContract.Intents.Insert.PHONE, phoneNumber.getText())
/*
 * In this example, sets the phone type to be a work phone.
 * You can set other phone types as necessary.
 */
      .putExtra(ContactsContract.Intents.Insert.PHONE_TYPE,
            ContactsContract.CommonDataKinds.Phone.TYPE_WORK);

Intent를 만든 후 다음을 호출하여 전송합니다. startActivity()입니다.

Kotlin

    /* Sends the Intent
     */
    startActivity(intent)

자바

    /* Sends the Intent
     */
    startActivity(intent);

호출하면 연락처 앱에 화면이 열리며 사용자가 새로운 연락처를 입력할 수 있도록 허용합니다. 이 연락처의 계정 유형 및 계정 이름이 화면 상단에 표시됩니다. 사용자가 데이터를 입력하고 완료를 클릭하면 연락처 앱의 연락처 목록이 표시됩니다. 사용자가 재방문함 뒤로를 클릭하여 앱을 내 앱에 추가합니다.

인텐트를 사용하여 기존 연락처 수정

Intent를 사용하여 기존 연락처를 수정하면 님은 이미 관심 있는 연락처를 선택했습니다. 예를 들어 우편번호가 없는 주소를 입력하면 사용자가 코드를 찾아서 연락처에 추가하는 것입니다.

인텐트를 사용하여 기존 연락처를 수정하려면 다음과 유사한 절차를 사용합니다. 사용할 수 있습니다. 섹션에 설명된 대로 인텐트를 만듭니다. 인텐트를 사용하여 새 연락처를 삽입하지만 연락처의 Contacts.CONTENT_LOOKUP_URI 및 MIME 유형 Contacts.CONTENT_ITEM_TYPE를 인텐트에 추가합니다. 세부정보를 포함하여 연락처를 수정하려는 경우 인텐트의 확장 데이터에 넣을 수 있습니다. 일부 모델이 name 열은 인텐트를 사용하여 수정할 수 없습니다. 이러한 열은 요약 보고서에 ContactsContract.Contacts 클래스에 대한 API 참조 섹션 을 클릭하세요.

마지막으로 인텐트를 전송합니다. 연락처 앱에서 이에 대한 응답으로 수정 화면을 표시합니다. 사용자가 수정을 완료하고 수정사항을 저장하면 연락처 앱에서 연락처 목록을 표시합니다. 사용자가 뒤로를 클릭하면 앱이 표시됩니다.

인텐트 만들기

연락처를 수정하려면 Intent(action)(으)로 전화하세요. ACTION_EDIT 작업으로 인텐트를 만듭니다. setDataAndType()을 호출하여 인텐트의 데이터 값을 연락처의 Contacts.CONTENT_LOOKUP_URI에 설정하고 MIME 유형을 Contacts.CONTENT_ITEM_TYPE MIME 유형으로 설정합니다. setType() 호출은 Intent의 현재 데이터 값을 덮어쓰므로 데이터와 MIME 유형은 동시에 설정해야 합니다.

연락처의 Contacts.CONTENT_LOOKUP_URI를 가져오려면 연락처의 Contacts._IDContacts.LOOKUP_KEY 값을 인수로 사용하여 Contacts.getLookupUri(id, lookupkey)를 호출합니다.

참고: 연락처의 LOOKUP_KEY 값: 연락처를 검색할 때 사용해야 하는 식별자입니다. 일정하게 유지되고 제공자가 내부 작업을 처리하기 위해 연락처의 행 ID를 변경하더라도 마찬가지입니다.

다음 스니펫은 인텐트를 만드는 방법을 보여줍니다.

Kotlin

    // The Cursor that contains the Contact row
    var mCursor: Cursor? = null
    // The index of the lookup key column in the cursor
    var lookupKeyIndex: Int = 0
    // The index of the contact's _ID value
    var idIndex: Int = 0
    // The lookup key from the Cursor
    var currentLookupKey: String? = null
    // The _ID value from the Cursor
    var currentId: Long = 0
    // A content URI pointing to the contact
    var selectedContactUri: Uri? = null
    ...
    /*
     * Once the user has selected a contact to edit,
     * this gets the contact's lookup key and _ID values from the
     * cursor and creates the necessary URI.
     */
    mCursor?.apply {
        // Gets the lookup key column index
        lookupKeyIndex = getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY)
        // Gets the lookup key value
        currentLookupKey = getString(lookupKeyIndex)
        // Gets the _ID column index
        idIndex = getColumnIndex(ContactsContract.Contacts._ID)
        currentId = getLong(idIndex)
        selectedContactUri = ContactsContract.Contacts.getLookupUri(currentId, mCurrentLookupKey)
    }

    // Creates a new Intent to edit a contact
    val editIntent = Intent(Intent.ACTION_EDIT).apply {
        /*
         * Sets the contact URI to edit, and the data type that the
         * Intent must match
         */
        setDataAndType(selectedContactUri, ContactsContract.Contacts.CONTENT_ITEM_TYPE)
    }

자바

    // The Cursor that contains the Contact row
    public Cursor mCursor;
    // The index of the lookup key column in the cursor
    public int lookupKeyIndex;
    // The index of the contact's _ID value
    public int idIndex;
    // The lookup key from the Cursor
    public String currentLookupKey;
    // The _ID value from the Cursor
    public long currentId;
    // A content URI pointing to the contact
    Uri selectedContactUri;
    ...
    /*
     * Once the user has selected a contact to edit,
     * this gets the contact's lookup key and _ID values from the
     * cursor and creates the necessary URI.
     */
    // Gets the lookup key column index
    lookupKeyIndex = mCursor.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY);
    // Gets the lookup key value
    currentLookupKey = mCursor.getString(lookupKeyIndex);
    // Gets the _ID column index
    idIndex = mCursor.getColumnIndex(ContactsContract.Contacts._ID);
    currentId = mCursor.getLong(idIndex);
    selectedContactUri =
            Contacts.getLookupUri(currentId, mCurrentLookupKey);
    ...
    // Creates a new Intent to edit a contact
    Intent editIntent = new Intent(Intent.ACTION_EDIT);
    /*
     * Sets the contact URI to edit, and the data type that the
     * Intent must match
     */
    editIntent.setDataAndType(selectedContactUri, ContactsContract.Contacts.CONTENT_ITEM_TYPE);

탐색 플래그 추가

Android 4.0 (API 버전 14) 이상에서 연락처 앱의 문제로 인해 오류가 발생함 제공합니다. 앱이 연락처 앱으로 수정 인텐트를 전송하고 사용자가 연락처를 수정한 후 저장한 다음 뒤로를 클릭하면 연락처 목록 화면이 표시됩니다. (으)로 돌아가는 방법은 다음과 같습니다. 최근을 클릭하고 앱을 선택해야 합니다.

Android 4.0.3 (API 버전 15) 이상에서 이 문제를 해결하려면 확장 데이터 키 finishActivityOnSaveCompleted를 인텐트에 추가합니다(값 true). Android 4.0 이전 버전에서는 이 키를 허용하지만 아무 영향을 미치지 않습니다. 설정 확장 데이터의 경우 다음 단계를 따르세요.

Kotlin

    // Sets the special extended data for navigation
    editIntent.putExtra("finishActivityOnSaveCompleted", true)

자바

    // Sets the special extended data for navigation
    editIntent.putExtra("finishActivityOnSaveCompleted", true);

다른 확장 데이터 추가

Intent에 확장 데이터를 추가하려면 다음을 호출합니다. putExtra()로 설정합니다. Intents.Insert에 명시된 키 값을 사용하여 공통 연락처 필드에 확장 데이터를 추가할 수 있습니다. 한 가지는 ContactsContract.Contacts 테이블의 열은 수정할 수 없습니다. 이러한 열은 ContactsContract.Contacts 클래스의 API 참조 요약 섹션의 '업데이트' 제목 아래 나열됩니다.

인텐트 전송

마지막으로, 구성한 인텐트를 전송합니다. 예를 들면 다음과 같습니다.

Kotlin

    // Sends the Intent
    startActivity(editIntent)

자바

    // Sends the Intent
    startActivity(editIntent);

사용자가 인텐트를 사용하여 삽입 또는 수정하도록 함

다음을 전송하여 사용자가 연락처를 삽입할지 또는 기존 연락처를 수정할지 선택할 수 있도록 작업이 있는 Intent ACTION_INSERT_OR_EDIT입니다. 예를 들어 이메일 클라이언트 앱은 사용자가 수신 이메일 주소를 새 연락처에 추가하거나 주소를 입력해야 합니다. 이 인텐트의 MIME 유형을 다음과 같이 설정합니다. Contacts.CONTENT_ITEM_TYPE님, 데이터 URI는 설정하지 마세요.

이 인텐트를 전송하면 연락처 앱이 연락처 목록을 표시합니다. 사용자는 새로운 연락처를 삽입하거나 기존 연락처를 선택하여 수정할 수 있습니다. 인텐트에 추가하는 확장 데이터 필드는 모두 표시되는 화면에 나타납니다. Intents.Insert에 지정된 키 값을 사용할 수 있습니다. 다음 코드 스니펫은 인텐트를 구성하고 전송하는 방법을 보여줍니다.

Kotlin

    // Creates a new Intent to insert or edit a contact
    val intentInsertEdit = Intent(Intent.ACTION_INSERT_OR_EDIT).apply {
        // Sets the MIME type
        type = ContactsContract.Contacts.CONTENT_ITEM_TYPE
    }
    // Add code here to insert extended data, if desired

    // Sends the Intent with an request ID
    startActivity(intentInsertEdit)

Java

    // Creates a new Intent to insert or edit a contact
    Intent intentInsertEdit = new Intent(Intent.ACTION_INSERT_OR_EDIT);
    // Sets the MIME type
    intentInsertEdit.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
    // Add code here to insert extended data, if desired
    ...
    // Sends the Intent with an request ID
    startActivity(intentInsertEdit);