GridView教程无法编译

时间:2011-12-08 16:39:35

标签: java android

我正在尝试在以下位置实现GridView教程:

http://developer.android.com/resources/tutorials/views/hello-gridview.html

然而,我收到错误:

  

无法将ImageAdapter解析为某种类型。

我使用的是Android 4.0(API Level 4)。

Google搜索广告的Google搜索没有找到它的官方API说明。

1 个答案:

答案 0 :(得分:0)

ImageAdapter在链接页面上列为扩展BaseAdapter的自定义类。如果无法将其解析为某个类型,则表明您的项目设置方式使得HelloGridView类无法看到ImageAdapter类。

确保项目中同时包含ImageAdapter和HelloGridView。