似乎GridLayout无法正确处理宽视图。
这是我的简单布局:
<GridLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnCount="2">
<TextView
android:textSize="24dp"
android:text="1,1"/>
<TextView
android:textSize="24dp"
android:text="LongLongLongLongLongLongLongLongLongLongLongLong"/>
有没有办法让这项工作?
实际上我想要3列布局,其中第2列会延伸,但首先我想解决这个简单的问题。