我正在尝试从我的托管中获取图像,其中包含我的图像链接。但是当我尝试滑行时它没有显示任何东西。
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
Myholder myholder=(Myholder) holder;
DataFood current=data.get(position);
myholder.textFoodname.setText(current.foodName);
myholder.textPrice.setText("Rp. " + current.price);
myholder.textId.setText(String.valueOf(current.foodId));
Glide.with(context).load("http://kelompokdua.hol.es/pic/" + current.foodImage).into(myholder.ivFood);
}
答案 0 :(得分:0)
我觉得你错过了什么!你能试试这个选项吗?我可以帮助你,让我知道这是否有效! :) 祝你今天愉快!
String url="http://kelompokdua.hol.es/pic/" + current.foodImage;
或者您可以先尝试此选项:
String urlImage="http://kelompokdua.hol.es/pic/martabak.jpg";
Glide.with(context).load(urlImage).asBitmap().into(new BitmapImageViewTarget(myholder.ivFood) {
@Override
protected void setResource(Bitmap resource) {
RoundedBitmapDrawable bitmapDrawable =
RoundedBitmapDrawableFactory.create(context.getResources(), resource);
myholder.ivFood.setImageDrawable(bitmapDrawable);
}
});