需要GridLayout
在我的 android 2.2 项目中使用,我从/android-sdk-macosx/extras/android/support/v7/gridlayout
. 当我清理项目时,红色下划线消失了。但是一旦我尝试编辑 xml 布局文件,错误就会返回:
View requires API level 14 (current min is 8):
<GridLayout>
那么如何让布局文件指向 API 7 网格布局呢?
需要GridLayout
在我的 android 2.2 项目中使用,我从/android-sdk-macosx/extras/android/support/v7/gridlayout
. 当我清理项目时,红色下划线消失了。但是一旦我尝试编辑 xml 布局文件,错误就会返回:
View requires API level 14 (current min is 8):
<GridLayout>
那么如何让布局文件指向 API 7 网格布局呢?
您可能已经阅读过如何使 Android GridLayout 与旧版本兼容?. 如果没有,我建议你通过。你说你导入了参考库。但是在导入它之后,您还需要reference
将此库项目添加到您的工作项目中。Right click your project -> Properties. Select
Android on the left and
Add`... 选择导入的工作区库。它将显示绿色标志。
希望这可以帮助。