我正在尝试将向后兼容的Gridlayout库添加到我的android项目中,但我无法使其正常工作。而且,我已经阅读了谷歌和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
不有任何错误编辑:这是我项目的截图: