本文整理汇总了Java中com.facebook.share.model.SharePhoto.getBitmap方法的典型用法代码示例。如果您正苦于以下问题:Java SharePhoto.getBitmap方法的具体用法?Java SharePhoto.getBitmap怎么用?Java SharePhoto.getBitmap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.facebook.share.model.SharePhoto
的用法示例。
在下文中一共展示了SharePhoto.getBitmap方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: validatePhotoForApi
import com.facebook.share.model.SharePhoto; //导入方法依赖的package包/类
private static void validatePhotoForApi(SharePhoto photo, Validator validator) {
if (photo == null) {
throw new FacebookException("Cannot share a null SharePhoto");
}
Bitmap photoBitmap = photo.getBitmap();
Uri photoUri = photo.getImageUrl();
if (photoBitmap == null) {
if (photoUri == null) {
throw new FacebookException(
"SharePhoto does not have a Bitmap or ImageUrl specified");
}
if (Utility.isWebUri(photoUri) && !validator.isOpenGraphContent()) {
throw new FacebookException(
"Cannot set the ImageUrl of a SharePhoto to the Uri of an image on the " +
"web when sharing SharePhotoContent");
}
}
}
示例2: getAttachment
import com.facebook.share.model.SharePhoto; //导入方法依赖的package包/类
private static NativeAppCallAttachmentStore.Attachment getAttachment(
UUID callId,
SharePhoto photo) {
Bitmap bitmap = photo.getBitmap();
Uri photoUri = photo.getImageUrl();
NativeAppCallAttachmentStore.Attachment attachment = null;
if (bitmap != null) {
attachment = NativeAppCallAttachmentStore.createAttachment(
callId,
bitmap);
} else if (photoUri != null) {
attachment = NativeAppCallAttachmentStore.createAttachment(
callId,
photoUri);
}
return attachment;
}
示例3: validatePhotoForNativeDialog
import com.facebook.share.model.SharePhoto; //导入方法依赖的package包/类
private static void validatePhotoForNativeDialog(SharePhoto photo, Validator validator) {
if (photo == null) {
throw new FacebookException("Cannot share a null SharePhoto");
}
Bitmap photoBitmap = photo.getBitmap();
Uri photoUri = photo.getImageUrl();
if (photoBitmap == null) {
if (photoUri == null) {
throw new FacebookException(
"SharePhoto does not have a Bitmap or ImageUrl specified");
}
if (Utility.isWebUri(photoUri) && !validator.isOpenGraphContent()) {
throw new FacebookException(
"Cannot set the ImageUrl of a SharePhoto to the Uri of an image on the " +
"web when sharing SharePhotoContent");
}
}
}
示例4: validatePhotoForNativeDialog
import com.facebook.share.model.SharePhoto; //导入方法依赖的package包/类
private static void validatePhotoForNativeDialog(SharePhoto photo, Validator validator) {
validatePhotoForApi(photo, validator);
if (photo.getBitmap() != null || !Utility.isWebUri(photo.getImageUrl())) {
Validate.hasContentProvider(FacebookSdk.getApplicationContext());
}
}