I am using SmartImageView to load my images from my own database .
myImage = (SmartImageView) findViewById(R.id.imageView1);
myImage.setImageUrl("http://172.22.75.224/droidlogin/zonea.JPG");
and i would need to convert this myimage to bitmap so as to draw over it using canvas.
currently i use
Bitmap bitmap = ((BitmapDrawable)myImage.getDrawable()).getBitmap();
but it keeps giving me a null which means that it didn't conver to bitmap.
Hope someone could assist me please!