如何对齐 ImageButton 内的图像源?
我有一个图像按钮,我想将其占据设备的整个宽度。我使用的图像源没有按钮那么长。默认值似乎是将其与按钮的中心对齐。相反,我想将其左对齐。我尝试过使用布局重力但没有任何反应。
这是代码..
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我想您希望 ImageButton 中的图像向左对齐?然后将其添加到您的 ImageButton 属性中:
就这样,您的图像在 ImageButton 的左侧对齐。
Well, I think you want your image in ImageButton to be alligned to the Left? Then add this to your ImageButton attributes:
and here it goes, your image is aligned at left of the ImageButton.