model.setEmbedUrl(new Text(attachment.getEmbed().getUrl()));
}
// アルバムの場合(アクティビティに画像を設定 twtter POSTを簡単にするため)
if(attachment.getThumbnails() != null && attachment.getThumbnails().size() > 0) {
Thumbnails thumbnails = attachment.getThumbnails().get(0);
if(thumbnails != null && thumbnails.getImage() != null) {
model.setAttachmentsImageUrl(new Text(thumbnails.getImage().getUrl()));
}
}
}
// -------------------------------------------------------