未显示来自网址的任何图片

时间:2017-05-12 11:44:53

标签: android android-glide

我正在尝试从我的托管中获取图像,其中包含我的图像链接。但是当我尝试滑行时它没有显示任何东西。

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);
    }

1 个答案:

答案 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);
            }
        });