博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android ImageView 自动拉伸
阅读量:4946 次
发布时间:2019-06-11

本文共 497 字,大约阅读时间需要 1 分钟。

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);

 

转载于:https://www.cnblogs.com/hello-studio/p/9640572.html

你可能感兴趣的文章
Struts2文件目录结构
查看>>
美国行照片集八 University of Washington
查看>>
c#接口容易被忽视的问题
查看>>
正则表达式
查看>>
(六)jdk8学习心得之Stream流
查看>>
拓扑排序
查看>>
初探angular的zonjs
查看>>
点击实事件的展开收缩
查看>>
Java内存模型深度解析:锁
查看>>
TCP/IP三次握手
查看>>
AtCoder ABC 076D - AtCoder Express
查看>>
CentOS配置FTP
查看>>
HDU 6138 Fleet of the Eternal Throne 多校#8 AC自动机
查看>>
Ceph实验室:第六课:Ceph运维之横向扩展
查看>>
条件、循环和其他语句
查看>>
模板方法模式
查看>>
input required
查看>>
linux目录
查看>>
Django学习-9-ORM多对多操作
查看>>
Windbg 探索(0)
查看>>