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

android   动态改变图片大小

时间:2014-08-15 14:49:39      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:android   图片   public   动态   

在oncreate中,使用getheight等函数不能获得控件大小,得到的为0

应使用其他方法


Resources res = getResources();

final ImageView view=(ImageView)findViewById(R.id.IV_about);

final Drawable drawable=res.getDrawable(R.drawable.ic_about);


DisplayMetrics dm = new DisplayMetrics();

getWindowManager().getDefaultDisplay().getMetrics(dm);

final int screen_height = dm.heightPixels ;//高度


ViewTreeObserver vto = view.getViewTreeObserver(); 

vto.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener()

public boolean onPreDraw() { 

int height = (int) ((float) view.getMeasuredWidth()/drawable.getMinimumWidth() * drawable.getMinimumHeight());

int width = view.getMeasuredWidth(); 

LinearLayout.LayoutParams linearParams =(LinearLayout.LayoutParams) view.getLayoutParams(); //取控件textView当前的布局参数  

linearParams.height = height;

linearParams.width = view.getMeasuredWidth();

linearParams.topMargin=screen_height/10;

view.setLayoutParams(linearParams);

view.setImageResource(R.drawable.ic_about);


android   动态改变图片大小,布布扣,bubuko.com

android   动态改变图片大小

标签:android   图片   public   动态   

原文地址:http://8546510.blog.51cto.com/8536510/1540409

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