I am reciving a nullpointerexpression when I try to get a Bitmap.
ImageLoader imageLoader = ImageLoader.getInstance();
Bitmap bmp = null;
bmp = imageLoader.loadImageSync("http://i.imgur.com/tx41HBE.jpg");
The bmp variable is null after calling the imageLoader.loadImageSync()
method , what's the reason?
Try this
The reason might be that you didn't initialize the imageLoader using
imageLoader.init(config)