我在ListView中有一些微调器(左侧有一些文本和右侧微调器) 像这样
一切都很好,但我希望微调器像这样对齐
有人可以帮助调整视图..,。
答案 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" />