Mar*_*era 13 android android-intent contactscontract android-image android-contentprovider
有许多Q&A线程,但没有一个提供真正的答案,或者我找不到它.
为了确保你,我先问了一下:
那么有谁知道如何使用Intent(如示例代码中)并插入一个Photo,它是在Bitmap中保存的?
示例代码我现在用它来启动对话意图,让用户在保存之前插入或取消并可能编辑字段:
// PrivateContactClass c;
// Bitmap photo;
Intent inOrUp = new Intent(ContactsContract.Intents.Insert.ACTION, ContactsContract.Contacts.CONTENT_URI);
inOrUp.setType(ContactsContract.Contacts.CONTENT_TYPE);
inOrUp.putExtra(ContactsContract.Intents.Insert.NAME, ModelUtils.formatName(c));
inOrUp.putExtra(ContactsContract.Intents.Insert.PHONE, getPrimaryPhone());
inOrUp.putExtra(ContactsContract.Intents.Insert.TERTIARY_PHONE, c.getMobile());
inOrUp.putExtra(ContactsContract.Intents.Insert.EMAIL, c.getMail());
inOrUp.putExtra(ContactsContract.Intents.Insert.JOB_TITLE, c.getFunction());
inOrUp.putExtra(ContactsContract.Intents.Insert.NOTES, getSummary());
inOrUp.putExtra(ContactsContract.Data.IS_SUPER_PRIMARY, 1);
startActivity(inOrUp);
Run Code Online (Sandbox Code Playgroud)
不仅仅使用intent,因为我怀疑我们可以传递Data ContentProvider保存的图像ID,或者直接在Intent中传递Bitmap.
从上面的代码扩展
// must be declared in class-context
private static final int CONTACT_SAVE_INTENT_REQUEST = 1;
...
startActivityForResult(inOrUp,CONTACT_SAVE_INTENT_REQUEST);
Run Code Online (Sandbox Code Playgroud)
@Override
protected void onActivityResult(int requestCode, int resultCode,
Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
switch (requestCode) {
case RESULT_INSERT_CONTACT:
if (resultCode == RESULT_OK) {
trySetPhoto();
}
break;
}
}
Run Code Online (Sandbox Code Playgroud)
public boolean setDisplayPhotoByRawContactId(long rawContactId, Bitmap bmp) {
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();
Uri pictureUri = Uri.withAppendedPath(ContentUris.withAppendedId(RawContacts.CONTENT_URI,
rawContactId), RawContacts.DisplayPhoto.CONTENT_DIRECTORY);
try {
AssetFileDescriptor afd = getContentResolver().openAssetFileDescriptor(pictureUri, "rw");
OutputStream os = afd.createOutputStream();
os.write(byteArray);
os.close();
afd.close();
return true;
} catch (IOException e) {
e.printStackTrace();
}
return false;
}
Run Code Online (Sandbox Code Playgroud)
private void trySetPhoto() {
// Everything is covered in try-catch, as this method can fail on
// low-memory or few NPE
try {
// We must have an phone identifier by which we search for
// format of phone number is not relevant, as ContentProvider will
// normalize it automatically
if (c.getMobile() != null) {
Uri lookup = Uri.withAppendedPath(
ContactsContract.PhoneLookup.CONTENT_FILTER_URI,
Uri.encode(c.getMobile()));
Cursor c = getContentResolver().query(lookup, null, null, null,
null);
// Remember cursor can be null in some cases
if (c != null) {
// we can obtain bitmap just once
Bitmap photo_bitmap = getPhotoBitmap();
c.moveToFirst();
// if there are multiple raw contacts, we want to set the photo for all of them
while (c.moveToNext()) {
setDisplayPhotoByRawContactId(
c.getLong(c.getColumnIndex(ContactsContract.CommonDataKinds.Phone.RAW_CONTACT_ID)),
photo_bitmap);
}
// remember to clean up after using cursor
c.close();
}
}
} catch (Exception e) {
// Logging procedures
} catch (Error e) {
// Logging procedures
}
}
Run Code Online (Sandbox Code Playgroud)
小智 11
Bitmap bit = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher); // your image
ArrayList<ContentValues> data = new ArrayList<ContentValues>();
ContentValues row = new ContentValues();
row.put(Data.MIMETYPE, ContactsContract.CommonDataKinds.Photo.CONTENT_ITEM_TYPE);
row.put(ContactsContract.CommonDataKinds.Photo.PHOTO, bitmapToByteArray(bit));
data.add(row);
Intent intent = new Intent(Intent.ACTION_INSERT, Contacts.CONTENT_URI);
intent.putParcelableArrayListExtra(Insert.DATA, data);
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6154 次 |
| 最近记录: |