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