ImageButton的坑 ImageButton 有问题

本文探讨了在Android开发过程中使用ImageButton遇到的问题及解决方案。作者发现直接newImageButton并设置wrap_content时会出现不期望的边框问题,而通过inflate加载ImageButton则可以完美解决这一问题。

最近在用ImageButton,发现,我如果new ImageButton,并且 设置Warp_content,但是它并不会正真的warp,它会有一个边框。
不知道怎么回事。

后来,在代码里面使用ImageButton,我发现用Inflate去加载它就没有问题,大小什么的都没有问题,上下也居中。
layout_titlebar_imagebtn.xml

<?xml version="1.0" encoding="utf-8"?>
<ImageButton xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="@dimen/titlebar_btn_width_height"
    android:layout_height="@dimen/titlebar_btn_width_height"
    android:background="@drawable/online_title_bar_item_bg_sel"
    android:src="@drawable/online_selector_return_button">

</ImageButton>
ImageButton img = (ImageButton)mInflater.inflate(R.layout.layout_titlebar_imagebtn, null);

这样就可以了。不知道为什么会有这种问题。

转载于:https://www.cnblogs.com/caoxinyu/p/10568697.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值