无法解析符号 'ImageReference'

Cannot resolve symbol 'ImageReference'

作为参考,我使用的是 flopsydroid to try and test LibGDX on Android Wear. Before doing anything else, I get an error trying to import android.support.wearable.view.ImageReference in MenuGridViewPagerAdapter 的克隆。据我所知,所有库都是最新的,并且 类 在同一个父包中(例如 android.support.wearable.view.GridPagerAdapter)导入没有问题。

我已经尽可能地更新了 SDK,并清理并重建了项目(使用 Intellij IDEA)。我可以采取任何其他步骤吗?这发生在其他人身上吗?

ImageReference class 已从最新的 Android Wear SDK 中删除。参见 http://developer.android.com/reference/android/support/wearable/view/package-summary.html

GridViewPagerAdapter 中返回 ImageReference 的方法已被 getBackgroundForPage(int row, int column) 替换,returns 改为 Drawable。参见 http://developer.android.com/reference/android/support/wearable/view/GridPagerAdapter.html#getBackgroundForPage(int,%20int)