Hi,
i need to create a object Image from import javax.microedition.lcdui.Image; using a file .png placed in drawable folder. How can i do that?
Thanks
Hi,
i need to create a object Image from import javax.microedition.lcdui.Image; using a file .png placed in drawable folder. How can i do that?
Thanks
Since this Android and not JavaME, you cannot create a javax.microedition.lcdui.Image. You would create a Bitmap instead. Here's a decent tutorial on working with images in Android.