如何在列表视图中调整微调器

时间:2012-10-25 10:53:13

标签: android listview spinner

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

enter image description here

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

enter image description here

有人可以帮助调整视图..,。

1 个答案:

答案 0 :(得分: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" />