8

我有一个 GridLayout (我以编程方式将孩子添加到其中)。

结果很难看,因为 GridLayout 没有填满所有可用空间。

这是结果:

在此处输入图像描述

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
 >

<HorizontalScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <android.support.v7.widget.GridLayout
        android:id="@+id/gridlayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/white" >
    </android.support.v7.widget.GridLayout>
</HorizontalScrollView>

</ScrollView>
4

6 回答 6

8

我认为您的布局行为一切正常。

放置在Horizo ​​ntalScrollView内的GridLayoutandroid:layout_width="match_parent"设置无效。插入GridLayout的单个子视图确定GridLayout 的实际宽度(如果您使用垂直ScrollView容器,则为高度),该宽度可能大于父屏幕的宽度(因此width=match_parent设置在这里无效;也适用于子视图)。GridLayout的列和行具有插入的最大子视图的大小(为此列/行分配)。

这整体是一个非常动态的结构。列数和行数会自动重新计算。请记住使用layout_rowlayout_column标记子视图,并可能设置所需的大小 - 遵循上述规则,例如:

        <EditText
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:inputType="text"
        android:id="@+id/editText1"
        android:layout_row="2"
        android:layout_column="8" />

因此,通过更改子视图的宽度,您可以控制 GridLayout 的列宽度。您可以研究以下示例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <HorizontalScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginLeft="0dp"
        android:layout_marginTop="0dp"
        android:background="#f3f3f3">

        <GridLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="#a3ffa3">

            <Button
                android:layout_width="100dp"
                android:layout_height="wrap_content"
                android:text="Col 1,Row4"
                android:id="@+id/button"
                android:layout_gravity="center"
                android:layout_row="4"
                android:layout_column="1" />

            <Button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Start.."
                android:layout_column="4"
                android:layout_row="8" />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Col 6, Row 1."
                android:id="@+id/button2"
                android:layout_row="1"
                android:layout_column="6" />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Col 6, Row 2."
                android:id="@+id/button3"
                android:layout_row="2"
                android:layout_column="6" />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="New Button"
                android:id="@+id/button4"
                android:layout_gravity="center"
                android:layout_column="9"
                android:layout_row="3" />

            <TextView
                android:layout_width="300dp"
                android:layout_height="wrap_content"
                android:id="@+id/textView"
                android:layout_row="3"
                android:layout_column="8" />

            <CheckBox
                android:layout_width="250dp"
                android:layout_height="wrap_content"
                android:text="New CheckBox"
                android:id="@+id/checkBox"
                android:layout_row="6"
                android:layout_column="7"
                android:textColor="#212995" />

            <EditText
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:inputType="text"
                android:ems="10"
                android:id="@+id/editText"
                android:layout_row="5"
                android:layout_column="8"
                android:textColor="#952a30" />

        </GridLayout>
    </HorizontalScrollView>
</LinearLayout>

我希望这可以帮到你。此致 :)

另外: 我发现以上内容实际上可能很难以编程方式实现。您可能正在考虑将 GridLayout 更改为更易于处理的 GridView 或 TableLayout。要了解更多信息,请查看以下网站:

  1. GridLayout.LayoutParams
  2. 网格布局
  3. gridlayout-not-gridview-how-to-stretch-all-children-evenly
于 2013-09-20T21:56:26.673 回答
4

你应该修改你的

<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >

并添加android:fillViewPort="true". 这应该使内容拉伸以填满屏幕(即视口)。

于 2013-10-07T06:45:01.310 回答
2

TextView reps = new TextView(this); android.support.v7.widget.GridLayout.LayoutParams repsLayoutParam = (LayoutParams) reps.getLayoutParams(); repsLayoutParam.setGravity(Gravity.FILL_HORIZONTAL | Gravity.FILL_VERTICAL);

这将创建一个放置在网格布局中的文本视图 - 将重力设置为 FILL_HORIZONTAL 并且 FILL_VERTICAL 应该确保它填充布局中的单元格。

于 2014-03-03T11:05:57.340 回答
1

因为网格视图有自己的滚动。

于 2013-10-01T17:29:01.690 回答
1

添加视图时,请记住先添加LayoutParams视图的权限。

于 2013-10-07T17:52:56.580 回答
0

也许是因为失踪

</ScrollView>

在最后。

于 2013-09-20T16:42:32.197 回答