當前位置: 首頁>>代碼示例>>Java>>正文


Java Intent.ACTION_INSERT_OR_EDIT屬性代碼示例

本文整理匯總了Java中android.content.Intent.ACTION_INSERT_OR_EDIT屬性的典型用法代碼示例。如果您正苦於以下問題:Java Intent.ACTION_INSERT_OR_EDIT屬性的具體用法?Java Intent.ACTION_INSERT_OR_EDIT怎麽用?Java Intent.ACTION_INSERT_OR_EDIT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在android.content.Intent的用法示例。


在下文中一共展示了Intent.ACTION_INSERT_OR_EDIT屬性的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getAddContactIntent

@Override
public Intent getAddContactIntent(String displayName, String csipUri) {
    Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT, Contacts.CONTENT_URI);
    intent.setType(Contacts.CONTENT_ITEM_TYPE);

    if (!TextUtils.isEmpty(displayName)) {
        intent.putExtra(Insert.NAME, displayName);
    }

    if (!TextUtils.isEmpty(csipUri)) {
        ArrayList<ContentValues> data = new ArrayList<ContentValues>();
        ContentValues csipProto = new ContentValues();
        csipProto.put(Data.MIMETYPE, CommonDataKinds.Im.CONTENT_ITEM_TYPE);
        csipProto.put(CommonDataKinds.Im.PROTOCOL, CommonDataKinds.Im.PROTOCOL_CUSTOM);
        csipProto.put(CommonDataKinds.Im.CUSTOM_PROTOCOL, SipManager.PROTOCOL_CSIP);
        csipProto.put(CommonDataKinds.Im.DATA, SipUri.getCanonicalSipContact(csipUri, false));
        data.add(csipProto);

        intent.putParcelableArrayListExtra(Insert.DATA, data);
    }

    return intent;
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:23,代碼來源:ContactsUtils5.java

示例2: addPhoneContact

/**
 * Start the activity to add a phone number to an existing contact or add a new one.
 *
 * @param phoneNumber
 *         The phone number to add to a contact, or to use when creating a new contact.
 */
public void addPhoneContact(final String phoneNumber) {
    Intent addIntent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
    addIntent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
    addIntent.putExtra(ContactsContract.Intents.Insert.PHONE, Uri.decode(phoneNumber));
    addIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    mContext.startActivity(addIntent);
}
 
開發者ID:philipwhiuk,項目名稱:q-mail,代碼行數:13,代碼來源:Contacts.java

示例3: onClick

@Override
public void onClick(DialogInterface dialogInterface, int item) {
  Recipient recipient = groupMembers.get(item);

  if (recipient.getContactUri() != null) {
    ContactsContract.QuickContact.showQuickContact(context, new Rect(0,0,0,0),
                                                   recipient.getContactUri(),
                                                   ContactsContract.QuickContact.MODE_LARGE, null);
  } else {
    final Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
    intent.putExtra(ContactsContract.Intents.Insert.PHONE, recipient.getNumber());
    intent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
    context.startActivity(intent);
  }
}
 
開發者ID:XecureIT,項目名稱:PeSanKita-android,代碼行數:15,代碼來源:GroupMembersDialog.java

示例4: handleAddToContacts

private void handleAddToContacts() {
  try {
    final Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
    intent.putExtra(ContactsContract.Intents.Insert.PHONE, recipients.getPrimaryRecipient().getNumber());
    intent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
    startActivityForResult(intent, ADD_CONTACT);
  } catch (ActivityNotFoundException e) {
    Log.w(TAG, e);
  }
}
 
開發者ID:XecureIT,項目名稱:PeSanKita-android,代碼行數:10,代碼來源:ConversationActivity.java


注:本文中的android.content.Intent.ACTION_INSERT_OR_EDIT屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。