IntelliJ:让GridLayout工作

时间:2012-10-31 14:43:53

标签: android grid-layout

我尝试在我的应用程序中使用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>

2 个答案:

答案 0 :(得分:34)

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

如果您使用gradle,请在build.gradle中添加

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

并且一切都应该正常工作:)

答案 1 :(得分:0)

您需要使用完整的包和类名:

<android.support.v7.widget.GridLayout>

添加命名空间,以便其他控件使用默认包:

xmlns:grid="http://schemas.android.com/apk/res-auto"