如何对齐 ImageButton 内的图像源?

发布于 2024-11-19 17:32:36 字数 601 浏览 3 评论 0原文

我有一个图像按钮,我想将其占据设备的整个宽度。我使用的图像源没有按钮那么长。默认值似乎是将其与按钮的中心对齐。相反,我想将其左对齐。我尝试过使用布局重力但没有任何反应。

这是代码..

<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>

I have an image button that I want to take to entire width of the device. The image src I am using is not as long as the button. The default seems to be to align it to the cener of the button. Instead I would like to align it to the left. I have tried using layout gravity but with no response.

Here is the code..

<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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挥剑断情 2024-11-26 17:32:36

好吧,我想您希望 ImageButton 中的图像向左对齐?然后将其添加到您的 ImageButton 属性中:

android:scaleType="fitStart"

就这样,您的图像在 ImageButton 的左侧对齐。

Well, I think you want your image in ImageButton to be alligned to the Left? Then add this to your ImageButton attributes:

android:scaleType="fitStart"

and here it goes, your image is aligned at left of the ImageButton.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文