本文整理汇总了Java中com.avos.avoscloud.AVFile.getUrl方法的典型用法代码示例。如果您正苦于以下问题:Java AVFile.getUrl方法的具体用法?Java AVFile.getUrl怎么用?Java AVFile.getUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.avos.avoscloud.AVFile
的用法示例。
在下文中一共展示了AVFile.getUrl方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getAvatarUrl
import com.avos.avoscloud.AVFile; //导入方法依赖的package包/类
public String getAvatarUrl(AVUser avUser){
AVFile avatar = avUser.getAVFile(AVATAR);
if (avatar != null) {
return avatar.getUrl();
} else {
return null;
}
}
示例2: loadData
import com.avos.avoscloud.AVFile; //导入方法依赖的package包/类
private void loadData() {
AVFile avatar = AVUser.getCurrentUser(User.class).getAvatar();
if (avatar != null) {
avatar.getThumbnailUrl(false, 100, 100);
String url = avatar.getUrl();
PicassoUtils.displayFitImage(this, Uri.parse(url), mIvAvatar, null);
}
mSwipeRefreshLayout.setRefreshing(true);
List<Invitation> datas = new ArrayList<>();
mRvInvitation.setAdapter(mRvInvitationAdapter = new HomeInvitationItemAdapter(this,
datas));
mController.getNewlyInvitationDatas();
}
示例3: getUrl
import com.avos.avoscloud.AVFile; //导入方法依赖的package包/类
public static String getUrl(AVFile file, int width) {
if (AVOSCloud.getStorageType() == AVOSCloud.StorageType.StorageTypeQiniu) {
return getUrl(file.getUrl(), width);
} else {
return file.getUrl();
}
}
示例4: getAvatarUrl
import com.avos.avoscloud.AVFile; //导入方法依赖的package包/类
public String getAvatarUrl(AVUser user) {
AVFile avatar = user.getAVFile("avatar");
if (avatar != null) {
return avatar.getUrl();
} else {
return null;
}
}
示例5: upload
import com.avos.avoscloud.AVFile; //导入方法依赖的package包/类
public void upload() throws IOException, AVException {
if (msg.getType() != Msg.Type.Audio && msg.getType() != Msg.Type.Image) {
return;
}
String objectId = msg.getObjectId();
if (objectId == null) {
throw new NullPointerException("objectId mustn't be null");
}
String filePath = PathUtils.getChatFilePath(objectId);
AVFile file = AVFile.withAbsoluteLocalPath(objectId, filePath);
file.save();
String url = file.getUrl();
msg.setContent(url);
}