我在 XML 文件中创建了以下内容
<GridView
android:id="@+id/grid_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:columnWidth="60dip"
android:horizontalSpacing="5dip"
android:verticalSpacing="5dip"
android:choiceMode="multipleChoice"/>
和 GridView 项目是 TextView。当 TextView 填充的内容超过 60 dip 时,它会垂直换行。因为 android:columnWidth="60dip" 选项。
是否可以根据项目填充的内容大小给出 android:columnWidth 值?