我有一个android项目,它在它的大部分菜单和屏幕中使用 GridLayout 。 但是,GridLayout是从 API 14和更高版本支持的。
,我还想让这个应用程序可以使用旧版本的android,我尝试使用自己的android支持库( ),它增加了支持 API 。 这正是我所寻找的,但是我不能让我的生活成为我的工作。 我已经尝试了所有的解释和想法:
还有。
无论我做什么,如何使用( 。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
编辑:为了引用,这是我用来创建支持的voiceover ( 直接从android示例程序中获取):
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"
>
android:text="@string/string_test"
/>
app:layout_gravity="fill_horizontal"
app:layout_column="0"
app:layout_columnSpan="4"
/>
android:text="@string/button_test"
app:layout_column="2"
/>
如果上面的解决方案没有工作,我可以能会做出什么错误? 有什么我丢失了,可能是我的原始代码有问题?
感谢你的帮助