如何在ImageButton中对齐图像源?

时间:2011-07-14 03:56:47

标签: android alignment imagebutton

我有一个图像按钮,我想要占用设备的整个宽度。我使用的图像src不像按钮那么长。默认似乎是将它与按钮的cener对齐。相反,我想将它对齐到左边。我尝试过使用布局重力但没有响应。

这是代码..

<LinearLayout 
   android:id = "@+id/llRoot"
   android:orientation="vertical"
   android:layout_width="fill_parent" 
   android:layout_height="fill_parent"
   android:layout_gravity="left"  >

    <ImageButton 
    android:id="@+id/ibSend"
    android:layout_gravity="left"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:layout_weight="1" 
    android:src="@drawable/send" >
     </ImageButton>

1 个答案:

答案 0 :(得分:27)

嗯,我想你想让你在ImageButton中的图像被分配到左边?然后将其添加到ImageButton属性:

android:scaleType="fitStart"

在这里,你的图像在ImageButton的左边对齐。