//等比例显示图片示例代码
int imageViewWidth = DensityUtil.width;
int imageViewHeight = imageViewWidth * 254/750;
FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(imageViewWidth, imageViewHeight);
imageView.setLayoutParams(layoutParams);
ImageLoaderZhiyue.getInstance().displayImageFullTo127(imgId, imageView);
2.ImageView设置selector不起作用
用两张图片做了个selector,使用ImageView的src或background使用selector点击时,总没出现点击效果,一般有两个原因:
1、对于clickable问题解决方案:
① 在xml中加上:
android:clickable="true"
② 或代码中设置:
imageView.setClickable(true);
2、在编写selector的时候,最好将值为true的放前面,如下:
<code class="language-java"><?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/home_recommend_d" android:state_pressed="false"></item>
<item android:drawable="@drawable/home_recommend_p" android:state_pressed="true"></item>
</selector></code>
上面的例子,使用时不会出现点击效果,可以尝试一下。
修改后的代码代码:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/home_recommend_p" android:state_pressed="true"></item>
<item android:drawable="@drawable/home_recommend_d" android:state_pressed="false"></item>
</selector>
这个例子,会出现点击效果。只是将文件中两种状态的顺序换一下,一个在前面一个在后面,即值为true的写前面,false或者default写后面。
总结经验:default /不点击时的效果图片应该放在最下面,才会有点击效果,不然怎么点都只显示default图片。