码迷,mamicode.com
首页 > 其他好文 > 详细

Imageview 按比例适应屏幕大小

时间:2016-05-03 09:18:56      阅读:382      评论:0      收藏:0      [点我收藏+]

标签:

      
DisplayMetrics  dm = new DisplayMetrics();
//取得窗口属性
getWindowManager().getDefaultDisplay().getMetrics(dm);
//窗口的宽度
int screenWidth = dm.widthPixels;

     ImageView mImageView = (ImageView)findViewById(R.id.login_icon); ViewGroup.LayoutParams lp = mImageView.getLayoutParams(); lp.width = screenWidth; lp.height = RelativeLayout.LayoutParams.WRAP_CONTENT; mImageView.setLayoutParams(lp); mImageView.setMaxWidth(screenWidth); mImageView.setMaxHeight(screenWidth * 5);

需要注意:

必须设置ImageView 的属性。 android:adjustViewBounds="true"

RelativeLayout 布局是指mImageView 所在上级布局

Imageview 按比例适应屏幕大小

标签:

原文地址:http://www.cnblogs.com/lvlv/p/5453750.html

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