码迷,mamicode.com
首页 > 移动开发 > 详细

Android ImageView 自动拉伸

时间:2018-09-13 16:35:47      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:group   param   gallery   viewgroup   style   图片   int   roi   image   

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 自动拉伸

标签:group   param   gallery   viewgroup   style   图片   int   roi   image   

原文地址:https://www.cnblogs.com/hello-studio/p/9640572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!