gpt4 book ai didi

android - 智能 : Getting GridLayout work

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:50:50 26 4
gpt4 key购买 nike

我尝试在我的应用程序中使用 GridLayout,但它不起作用。我使用了这个教程:IntelliJ and android.support.v7.widget.GridLayout

但还是不行。

我收到以下错误:

error: No resource identifier found for attribute 'columnCount' in package 'android'
error: No resource identifier found for attribute 'rowCount' in package 'android'

还有什么建议吗?

编辑:使用我的实际 XML:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:grid="http://schemas.android.com/apk/res-auto"
android:layout_width="350dp"
android:layout_height="fill_parent"
android:orientation="vertical">

<EditText android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:cursorVisible="false"
android:id="@+id/txtName"/>


<android.support.v7.widget.GridLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
grid:columnCount="3"
grid:rowCount="2">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1,1" />
 
</android.support.v7.widget.GridLayout>

</LinearLayout>

最佳答案

今天我为此苦苦挣扎 android dev site我找到了更简单的解决方案以及为什么他们会遇到问题。 v7 库中的 GridLayout 未与 v7 appcompat 库连接,因此您必须手动添加 v7 gridlayout 库依赖项。

如果你使用 gradle 那么在 build.gradle 中添加

dependencies {
...
compile 'com.android.support:gridlayout-v7:23.2.0'
}

一切正常:)

关于android - 智能 : Getting GridLayout work,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13160523/

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