我有一个 android 项目,在它的大部分菜单和屏幕中都使用了 GridLayout。但问题是 API 14 及更高版本支持 GridLayout。
由于我想让该应用程序也可用于旧版本的 android,因此我尝试使用 Android 自己的支持库GridLayout,它增加了对 API 7 的支持。这正是我一直在寻找的,但是我不能为我的生活让它工作。我已经尝试了所有这些解释和想法:
和更多...
无论我做什么、如何做或使用什么 IDE(无论是 Eclipse ADT 还是 Android Studio),它总是在布局 XML 中给我一个错误,如下所示:
The following classes could be instantiated: - android.support.v7.widget.GridLayout
With either one of these exceptions showing in the error log:
1. android.content.res.Resources$NotFoundException: Could not resolve value 0x7F080000
2. java.lang.classnotfoundexception: android.support.v7.gridlayout.R$dimen
编辑:作为参考,这是我用来创建支持网格布局的内容(直接取自 android 示例程序):
<android.support.v7.widget.GridLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/blue"
android:padding="10dip"
app:columnCount="4"
>
<TextView
android:text="@string/string_test"
/>
<EditText
app:layout_gravity="fill_horizontal"
app:layout_column="0"
app:layout_columnSpan="4"
/>
<Button
android:text="@string/button_test"
app:layout_column="2"
/>
</android.support.v7.widget.GridLayout>
如果上述解决方案都不起作用,我可能做错了什么?有什么我遗漏的东西,也许我的原始代码有问题?
任何帮助表示赞赏