我正在尝试将向后兼容的 Gridlayout 库添加到我的 android 项目中,但我无法让它工作。而且,我已经阅读了 google 和 stackoverflow 上的所有其他文章,但它仍然不起作用。
这是我做的,一步一步:
将 Gridlayout 项目作为现有项目导入我的工作区。我使用了在我的 sdk 中找到的 Gridlayout 项目,即这条路径:
adt-bundle-mac-x86_64/sdk/extras/android/support/v7/gridlayout
然后在我的实际项目中,我将其作为库
Properties, Android
添加到我的项目中。android-support-v7-gridlayout
然后我在我的项目中找到了我的 xml 布局文件,并在其中添加了一个 GridLayout。
这是代码:
<android.support.v7.widget.GridLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
我的问题:当我切换到我的 xml 布局的图形布局时,我看到以下错误消息:
The following classes could not be found:
- android.support.v7.widget.GridLayout (Change to android.widget.GridLayout, Fix Build Path, Edit XML, Create Class)
我能做些什么呢?有小费吗?这真的让我发疯...
以下是关于我的项目的一些附加信息:
- 在我的
Android Dependencies
文件夹中,我确实有android-support-v7-gridlayout.jar
- 在我的
gen
文件夹中,我有一个名为android.support.v7.gridlayout
android-support-v7-gridlayout
我工作区中的项目没有任何错误
编辑:这是我的项目的截图: