Fix again.
Change-Id: I7393e1e9e9aa3f8612d143840109f1c5193f692f
This commit is contained in:
@@ -607,9 +607,11 @@ public class VCardComposer {
|
|||||||
.appendEmails(contentValuesListMap.get(Email.CONTENT_ITEM_TYPE))
|
.appendEmails(contentValuesListMap.get(Email.CONTENT_ITEM_TYPE))
|
||||||
.appendPostals(contentValuesListMap.get(StructuredPostal.CONTENT_ITEM_TYPE))
|
.appendPostals(contentValuesListMap.get(StructuredPostal.CONTENT_ITEM_TYPE))
|
||||||
.appendOrganizations(contentValuesListMap.get(Organization.CONTENT_ITEM_TYPE))
|
.appendOrganizations(contentValuesListMap.get(Organization.CONTENT_ITEM_TYPE))
|
||||||
.appendWebsites(contentValuesListMap.get(Website.CONTENT_ITEM_TYPE))
|
.appendWebsites(contentValuesListMap.get(Website.CONTENT_ITEM_TYPE));
|
||||||
.appendPhotos(contentValuesListMap.get(Photo.CONTENT_ITEM_TYPE))
|
if ((mVCardType & VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT) == 0) {
|
||||||
.appendNotes(contentValuesListMap.get(Note.CONTENT_ITEM_TYPE))
|
builder.appendPhotos(contentValuesListMap.get(Photo.CONTENT_ITEM_TYPE));
|
||||||
|
}
|
||||||
|
builder.appendNotes(contentValuesListMap.get(Note.CONTENT_ITEM_TYPE))
|
||||||
.appendEvents(contentValuesListMap.get(Event.CONTENT_ITEM_TYPE))
|
.appendEvents(contentValuesListMap.get(Event.CONTENT_ITEM_TYPE))
|
||||||
.appendIms(contentValuesListMap.get(Im.CONTENT_ITEM_TYPE))
|
.appendIms(contentValuesListMap.get(Im.CONTENT_ITEM_TYPE))
|
||||||
.appendRelation(contentValuesListMap.get(Relation.CONTENT_ITEM_TYPE));
|
.appendRelation(contentValuesListMap.get(Relation.CONTENT_ITEM_TYPE));
|
||||||
|
|||||||
@@ -260,6 +260,8 @@ public class VCardConfig {
|
|||||||
|
|
||||||
//// The followings are VCard types available from importer/exporter. ////
|
//// The followings are VCard types available from importer/exporter. ////
|
||||||
|
|
||||||
|
public static final int FLAG_REFRAIN_IMAGE_EXPORT = 0x00800000;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>
|
* <p>
|
||||||
* The type indicating nothing. Used by {@link VCardSourceDetector} when it
|
* The type indicating nothing. Used by {@link VCardSourceDetector} when it
|
||||||
|
|||||||
Reference in New Issue
Block a user