1

我在 ListView 中有一些微调器(左侧一些文本和右侧微调器),像这样

在此处输入图像描述

一切都很好,但我希望微调器像这样对齐

在此处输入图像描述

有人可以帮忙调整意见..,。

4

1 回答 1

3
<Spinner android:id="@+id/spinner" 
 android:layout_width="150dp"//==> Set the width of the spinner. 
 android:layout_height="wrap_content" 
 android:layout_marginRight="10sp" 
 android:layout_alignParentRight="true"
 android:layout_centerVertical="true" 
 android:focusable="false" 
 android:focusableInTouchMode="false" 
 android:visibility="gone" />
于 2012-10-25T11:18:21.900 回答