我有這樣的代碼:如何將LinearLayout中的微調框向右移動?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:layout_marginRight="20dp"
>
<LinearLayout
android:id="@+id/relativeLayoutforPRICE"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/textView$_points_to_win"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Points to win"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Spinner
android:id="@+id/spinner$_points_to_win"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
目前,它看起來像這樣:
我想微調移動到的LinearLayout的右邊。我試圖用:
android:gravity="right"
和
android:gravity="end"
和
android:layout_gravity="right"
和
android:layout_gravity="end"
,但它並沒有幫助。有沒有其他選項可以將其移至右側? 什麼也很重要我想將父佈局保持爲Linear(垂直方向)和當前佈局爲Linear(水平方向)。
你可以用'layout_weight = 「1」'在'TextView' –
使用的FrameLayout而不是如果你設置'機器人:layout_gravity = 「權利」'來微調 – withparadox2
@ChiragSavsani,你說的是veeery有趣!不過,我想知道是否有任何方法讓這個微調器儘可能小,只是把它移到右邊。 – Tomas