如何在水平LinearLayout中将ImageButton对齐到右侧

时间:2015-04-24 01:37:22

标签: android android-layout

ImageButton中有LinearLayout。我尝试将ImageButton放在水平LinearLayout的右侧。我使用layout_gravity="right"但它不起作用。请帮帮我。

 <LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="5"
    tools:context="com.startsoft.musicalsound.MainActivity" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.3"
        android:background="@drawable/img_bg_header"
        android:orientation="horizontal" >

        <ImageButton
            android:id="@+id/btn_menu"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_gravity="right"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_action_sort_by_size" />
    </LinearLayout>

2 个答案:

答案 0 :(得分:2)

android:gravity="right"的父版面上使用ImageButton。您也可以从中删除android:layout_gravity="right"

答案 1 :(得分:1)

将按钮的重力设置为如下: 机器人:layout_gravity = “右”