tags:

views:

115

answers:

1

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

+1  A: 

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.

Jay Askren
hi, the problem is i need use this libray:http://www.nutiteq.com/javadoc/index.html and i need javax.Image... thanks
xger86x
What are you trying to do with it?
Jay Askren