以编程方式设置ImageView的宽度和高度?
我怎样才能以编程方式设置ImageView
的宽度和高度?
可能为时已晚,但为了其他同样的问题,设置ImageView的高度:
image_view.getLayoutParams().height = 20;
希望这可以帮助。
重要。 如果您在布局已经“布置”之后设置高度,请确保您也打电话给:
image_view.requestLayout()
如果您的图片视图是dynamic的,则包含getLayout的答案将失败,并显示null-exception。
在这种情况下,正确的方法是:
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(100, 100); iv.setLayoutParams(layoutParams);
这个简单的方法来完成你的任务:
setContentView(R.id.main); ImageView iv = (ImageView) findViewById(R.id.left); int width = 60; int height = 60; LinearLayout.LayoutParams parms = new LinearLayout.LayoutParams(width,height); iv.setLayoutParams(parms);
另一种方法,如果你想给高度和宽度的屏幕大小,然后使用下面的代码:
setContentView(R.id.main); Display display = getWindowManager().getDefaultDisplay(); ImageView iv = (LinearLayout) findViewById(R.id.left); int width = display.getWidth(); // ((display.getWidth()*20)/100) int height = display.getHeight();// ((display.getHeight()*30)/100) LinearLayout.LayoutParams parms = new LinearLayout.LayoutParams(width,height); iv.setLayoutParams(parms);
希望对你充分使用。
我用pixel
和dp
玩过这个。
private int dimensionInPixel = 200;
如何按像素设置:
view.getLayoutParams().height = dimensionInPixel; view.getLayoutParams().width = dimensionInPixel; view.requestLayout();
如何通过dp设置:
int dimensionInDp = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dimensionInPixel, getResources().getDisplayMetrics()); view.getLayoutParams().height = dimensionInDp; view.getLayoutParams().width = dimensionInDp; view.requestLayout();
希望这会帮助你。
dynamic设置button的最好和最简单的方法是
Button index=new Button(this); int height = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 45, getResources().getDisplayMetrics()); int width = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 42, getResources().getDisplayMetrics());
上面的高度和宽度以像素px为单位。 45是dp的高度,42是dp的宽度。
index.setLayoutParams(new <Parent>.LayoutParams(width, height));
所以,例如,如果你已经把你的button放在一个TableLayout的TableRow中,你应该把它作为TableRow.LayoutParams
index.setLayoutParams(new TableRow.LayoutParams(width, height));
如果您需要将宽度或高度设置为match_parent
(与其父级一样大)或wrap_content
(足够大以适应其内部内容),则ViewGroup.LayoutParams
具有以下两个常量:
imageView.setLayoutParams( new ViewGroup.LayoutParams( // or ViewGroup.LayoutParams.WRAP_CONTENT ViewGroup.LayoutParams.MATCH_PARENT, // or ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.MATCH_PARENT ) );
或者你可以像Hakem Zaied的回答那样设置它们:
imageView.getLayoutParams().width = ViewGroup.LayoutParams.MATCH_PARENT; //...
image_view.getLayoutParams().height
以像素为单位返回高度值。 您需要先获取屏幕尺寸才能正确设置值。
Display display = context.getWindowManager().getDefaultDisplay(); DisplayMetrics outMetrics = new DisplayMetrics(); display.getMetrics(outMetrics); int screen_height = outMetrics.heightPixels; int screen_width = outMetrics.widthPixels;
获得屏幕尺寸后,可以使用适当的边距来设置imageview的宽度和高度。
view.getLayoutParams().height = screen_height - 140; view.getLayoutParams().width = screen_width - 130 ;
您可以为所有情况设置值。
demoImage.getLayoutParams().height = 150; demoImage.getLayoutParams().width = 150; demoImage.setScaleType(ImageView.ScaleType.FIT_XY);
只需创build一个LayoutParams对象并将其分配给您的imageView
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(150, 150); imageView.setLayoutParams(params);