1

我正在尝试在我的项目中使用支持库中的 GridLayout。我所做的只是将它作为 Android 库添加到我的项目中。我创建了一个简单的布局来显示什么不起作用。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res/com.example.myapp"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<android.support.v7.widget.GridLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="@dimen/margin"
    app:columnCount="3"
    app:rowCount="8"
    tools:context=".RegistrationActivity" >

    <Button
        android:id="@+id/activity_registration_company"
        app:layout_columnSpan="3"
        android:background="@android:color/darker_gray"
        android:text="1" />

    <Button
        android:id="@+id/activity_registration_street"
        app:layout_columnSpan="2"
        android:background="@android:color/darker_gray"
        android:text="2" />

    <Button
        android:id="@+id/activity_registration_building"
        app:layout_columnSpan="1"
        android:background="@android:color/darker_gray"
        android:text="3" />
</android.support.v7.widget.GridLayout>

这是我在 Eclipse 布局编辑器中看到的(在设备上相同): 在此处输入图像描述

如您所见,GridLayout 的内容并没有占据整个宽度。Button 也不占用 span 定义的空间。有任何想法吗?

4

1 回答 1

0

使用 android:layout_columnWeight="X"(X 是您想要的任何数字)与android:layout:width="0dp"

于 2015-11-20T08:19:31.487 回答