tags:

views:

86

answers:

1

How to load an image in ANDROID?

+1  A: 

You'll need to add the image as a resource to the project, and then build an ImageView that uses that image resource. Check out the details at http://developer.android.com/guide/topics/graphics/2d-graphics.html

Jim Kiley