gpt4 book ai didi

android.support.v7.widget.GridLayout 无法让它工作

转载 作者:IT老高 更新时间:2023-10-28 22:19:54 26 4
gpt4 key购买 nike

我有一个在其大部分菜单和屏幕中使用 GridLayout 的 android 项目。但问题是 API 14 及更高版本支持 GridLayout。

由于我想让该应用程序也适用于旧版本的 android,因此我尝试使用 Android 自己的支持库 GridLayout这增加了对 API 7 的支持。这正是我一直在寻找的东西,但是我一辈子都无法让它发挥作用。我已经尝试了所有这些解释和想法:

  1. Android's official instructions
  2. Solution 1
  3. Solution 2
  4. Solution 3
  5. Solution 4
  6. Solution 5

还有更多...

无论我做什么、如何做或使用什么 IDE(无论是 Eclipse ADT 还是 Android Studio),它总是在 Layout 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>

如果上述解决方案都不起作用,我可能做错了什么?有什么我遗漏的东西,也许我的原始代码有问题?

感谢任何帮助

最佳答案

尝试使用 Gradle,并在 build.gradle 文件的末尾添加以下部分:

dependencies {
implementation 'com.android.support:gridlayout-v7:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
}

然后执行assembleDebug gradle任务。

关于android.support.v7.widget.GridLayout 无法让它工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18506055/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com