android里为ImageButton设置图片出现混乱
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android里为ImageButton设置图片出现混乱相关的知识,希望对你有一定的参考价值。
setImageResource(id)和setImageBitmap(BitmapFactory.decodeResource(res,id))有什么区别啊?为什么我用第一个方法程序就出现各种图片混乱,第二个就正常了。
这两个方法都是为ImageView或ImageButton设置背景图片,只不过是使用的对象不同而已。setImageResource属性直接设置资源ID,例如,R.Drawable.icon。而setImageBitmap是bitmap对象。没什么本质上的区别,建议你使用setBackGroundResource属性,这个稳定些。 参考技术A 建议你另外专门建个项目来测试一下这个问题,你就这么一个问题也不知道问题处在哪儿android之ImageButton实现选中改变背景,外加(图片自动适配组件大小)
android之ImageButton实现选中改变背景,附加(图片自动适配组件大小)
下面是代码
<ImageButton
android:id="@+id/jmxw"
android:layout_width="fill_parent"
android:layout_marginLeft="4dip"
android:layout_height="0dip"
android:layout_weight="784"
android:background="@drawable/menupagexw"/>
2.在androidd项目的drawable下添加"android xml file"资源,选择类型为"selector",文件名为"menupagexw"
3.在menupagexw.xml中添加状态,内容如下:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" android:drawable="@drawable/jmxw_hl"/>
<item android:state_pressed="false" android:drawable="@drawable/jmxw"/>
</selector>
这样这个按钮在选中不和选中的情况下,背景就不一样了。
附加:
android:src=“图片id”,这时候图片不会根据组件大小而调整,但是android:background="图片id",会自动调整图片显示比列,来适配组件
原文:http://www.myexception.cn/image/1596451.html
以上是关于android里为ImageButton设置图片出现混乱的主要内容,如果未能解决你的问题,请参考以下文章
android Imagebutton 点击更换背景图片,图是换了Imagebutton的大小为啥也变了?
android 中怎么控制ImageButton 上的图片与按钮尺寸的匹配
Android在Imagebutton上设置动态图像[关闭]
imageButton 中,怎么实现 src 的图片 和imagebutton 大小 相同拜托各位大神
android中,如果使用imageButton可以在drawable 中设置一个selector,但是imageView设置不起作用,怎么办?