I am trying to implement the GridView tutorial at:
http://developer.android.com/resources/tutorials/views/hello-gridview.html
However, I get the error:
ImageAdapter cannot be resolved to a type.
I am using Android 4.0 (API Level 4).
Googling for ImageAdapter does not find an official API description for it.
ImageAdapter is listed on the linked page as a custom class extending BaseAdapter. If it cannot be resolved to a type, you have set up your project in such a way that the HelloGridView class cannot see the ImageAdapter class.
Make sure you have both ImageAdapter and HelloGridView in your project.