当前位置: 首页>>代码示例>>Java>>正文


Java SharePhoto.getBitmap方法代码示例

本文整理汇总了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");
        }
    }
}
 
开发者ID:eviltnan,项目名称:kognitivo,代码行数:22,代码来源:ShareContentValidation.java

示例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;
}
 
开发者ID:eviltnan,项目名称:kognitivo,代码行数:19,代码来源:ShareInternalUtility.java

示例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");
        }
    }
}
 
开发者ID:CE-KMITL-OOAD-2015,项目名称:Move-Alarm_ORCA,代码行数:22,代码来源:ShareContentValidation.java

示例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());
    }
}
 
开发者ID:eviltnan,项目名称:kognitivo,代码行数:8,代码来源:ShareContentValidation.java


注:本文中的com.facebook.share.model.SharePhoto.getBitmap方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。