我有一个 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>
在上面的代码中,我认为 make ImageButton
with layout_weight is 1 会起作用,但实际上不会。请告诉我如何设计这个布局。
谢谢 :)