2

我正在使用一个 GridLayout(来自支持库,如果这很重要),我在其中动态添加 TextViews。我在这里遇到了一个问题,所有 TexViews 只添加在一行中,这也导致其中一些不显示,最后一个显示被剪裁。

我该如何解决这个问题,以便将 TextViews 放在下一行。

这是我的 GridLayout 定义:

  <android.support.v7.widget.GridLayout
            android:id="@+id/text_views"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_below="@id/another_layout"
            android:layout_marginTop="20dp"
            android:background="@color/soft" />
4

1 回答 1

0

您将需要指定所需的列数,可以使用方法调用或在 xml 定义中动态指定 (android:numColumns="2")。

于 2013-10-06T13:27:24.623 回答