我正在使用带有 3 列标签、* 和微调器的表格布局,所有这些都有 wrap_content 并且当微调器文本很小时它工作正常。如果任何一个微调器的文本很长,那么所有微调器都会延伸到最后,而且它也不适合屏幕。
有什么方法可以让每个微调器适应其文本大小,例如 tablelayout 中的 wrap_content。用于表格布局示例的 xml。
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFFFFF"
android:stretchColumns="2" >
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_column="0"
android:gravity="right"
android:paddingLeft="3dip"
android:text="Sold To"
android:textColor="#000033"
android:textSize="17sp" />
<TextView
android:layout_column="1"
android:gravity="left"
android:text="*"
android:textColor="#FF0000"
android:textSize="17sp"
android:width="20dip" />
<Spinner
android:id="@+id/sold_to_dd"
android:layout_width="wrap_content"
android:layout_column="2"
/>
</TableRow>
</TableLayout>
我希望很多人会遇到同样的问题。提前致谢