我有一個LinearLayout,其中有一個微調器和一個圖像按鈕。我希望微調框在左側屏幕上,圖像按鈕在右側屏幕上(並且都在同一個屏幕上)。這裏是我的佈局:LinearLayout:設計兩個視圖:一個在左側屏幕和一個在右側屏幕
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal">
<Spinner
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_alignParentTop="true"
android:id="@+id/spinner_method_list"></Spinner>
<ImageButton
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1"
android:background="@drawable/ic_menu_refresh"/>
</LinearLayout>
在上面的代碼,我覺得做ImageButton
與layout_weight爲1的工作,但實際上沒有。請告訴我如何設計這個佈局。
謝謝:)
感謝您的好解釋:D – hqt
最受歡迎! :) – codeMagic