我正在使用一个 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" />