Android, cambiar el tamaño de la imagen en ImageView
Frecuentes
Visto 44,349 veces
8
For Android, How can I change the image size in an ImageView in a layout?
Mi imagen es jpeg
formato.
4 Respuestas
10
<ImageView
android:id="@+id/imageView1"
android:layout_margin="20dp"
android:src="@drawable/stop"
android:layout_width="50dp"
android:layout_height="50dp"/>
Just change width and height attribute.
Respondido 28 ago 13, 08:08
4
You can also set Params using LayoutParams
ImageView yourImageView= (ImageView)findViewById(R.id.imageId);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(30, 30);
//width and height of your Image ,if it is inside Relative change the LinearLayout to RelativeLayout.
yourImageView.setLayoutParams(layoutParams);
Respondido 15 Abr '14, 14:04
2
There are a few ways to change the size of an image in an imageView in XML.
Scale the image by pulling around the edges of the imageView in the Graphical Layout (this is not really advised since the Graphical Layout sometimes adds undesired properties into the XML).
Apply a weight to the imageView (this requires the parent object to have specified a weightSum), causing the image to scale according to the screen size. This seems to be the most reliable way to gauge how your layout will look on many different sized screens.
Simply adjust the weight and height in the imageView (as others have mentioned).
Respondido 28 ago 12, 05:08
1
<ImageView
android:id="@+id/imageViewId"
android:src="@drawable/icon"
android:layout_width="xxdp"
android:layout_height="yydp"/>
sin que importe xx is the width in pixels and yy is the height in pixels.
(give integer values as you desire the size to be)
Respondido 25 ago 12, 17:08
No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas android android-layout imageview or haz tu propia pregunta.
i have a problem in that : when i am increasing the height attribute, only image view's height is increasing but image's height is not increasing - Dhruvam Gupta
Es posible que también desee configurar android: scaleType attribute to make the image scale within the ImageView (fitXY en mi caso) - Luis