0

This Code is not showing any image in imageview. I am getting an Exception that a file size is too large. Help me. Can anyone Please Explain what I am doing wrong?

  Bundle arguments = getArguments();
  if (arguments != null) {
      String name = arguments.get("FoodName").toString();
      String image = arguments.get("FoodImage").toString();

      txtfoodname.setText(name);
      Glide.with(this).load(image).into(imgfood);
  }
3

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Browse other questions tagged or ask your own question.