Android ImageView 自动拉伸

Posted Hello

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android ImageView 自动拉伸相关的知识,希望对你有一定的参考价值。

1 int width = ScreenUtils.getScreenWidth(this);
2 int height = ScreenUtils.getScreenHeight(this);
3 mImageView = new ImageView(this);
4 mImageView.setScaleType(ImageView.ScaleType.FIT_XY);
5 mImageView.setLayoutParams(new Gallery.LayoutParams(width, height));// 设置Gallery组件的背景风格
1 ViewGroup.LayoutParams params = mImageView.getLayoutParams();
2 //设置图片的相对于屏幕的宽高比
3 params.width = width;
4 params.height = height;
5 mImageView.setLayoutParams(params);

 

以上是关于Android ImageView 自动拉伸的主要内容,如果未能解决你的问题,请参考以下文章

android:在imageview中拉伸图像以适应屏幕

ImageView适合不拉伸图像

ImageView图片适应屏幕宽度,等比例拉伸

在 imageview 中使用时从相机或画廊拍摄的图片其方向发生变化,有时在 Android 中会垂直拉伸

Android中ImnageView 中如何让图片拉伸显示?

解决android:background背景图片被拉伸问题