欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android中ImageView.src设置图片拉伸、填满控件的方法

程序员文章站 2023-01-02 23:54:46
问题 imageview.src设置图片资源,图片不拉伸了,却有空隙部分:

问题

imageview.src设置图片资源,图片不拉伸了,却有空隙部分:

<linearlayout 
 android:id="@+id/linearlayout1" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:orientation="vertical" > 
 
<imageview 
 android:layout_width="wrap_content" 
 android:layout_height="205dp" 
 android:scaletype="centerinside" 
 android:background="@drawable/feature_guide_1" > 
</imageview> 
</linearlayout> 

Android中ImageView.src设置图片拉伸、填满控件的方法

解决

如下方式设置 就没有空隙了

<linearlayout 
 android:id="@+id/linearlayout1" 
 android:layout_width="match_parent" 
 android:layout_height="wrap_content" 
 android:orientation="vertical" > 
 
 <imageview 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:layout_gravity="center" 
  android:adjustviewbounds="true" 
  android:scaletype="fitxy" 
  android:src="@drawable/feature_guide_0" > 
 </imageview> 
</linearlayout> 

以下为参考内容:

最近碰到一个需求,要求是在不知道图片宽度和高度的情况下,让图片在指定宽度内充满,同时高度自适应,在网络上查找了一下,也有很多解决方法,后来针对自己的应用,选择了一个修改较小的方案,最后证明效果还是蛮不错的,记录在这里,希望能帮助到有同样需求的人。

好了,言归正传

首先,需要给你的imageview布局加上android:adjustviewbounds="true"

<imageview android:id="@+id/test_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaletype="fitxy"
android:adjustviewbounds="true"
android:layout_gravity="center"
android:contentdescription="@string/app_name"
android:src="@drawable/ic_launcher" />

然后,在代码里设置imageview.最大宽度和最大高度,因为adjustviewbounds属性只有在设置了最大高度和最大宽度后才会起作用

int screenwidth = getscreenwidth(this);
viewgroup.layoutparams lp = testimage.getlayoutparams();
lp.width = screenwidth;
lp.height = layoutparams.wrap_content;
testimage.setlayoutparams(lp);
testimage.setmaxwidth(screenwidth);
testimage.setmaxheight(screenwidth * 5); 

这里其实可以根据需求而定,我这里测试为最大宽度的5倍

ok,接下来,再按照常规方法加载图片就会得倒预期的效果了,需要的同学可以试试,good luck.

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。