web-dev-qa-db-fra.com

Android: comment définir la hauteur/largeur de l'image src d'un ImageButton?

Android: comment définir la hauteur/largeur de l'image (image src dans le fond) d'un ImageButton?

Je souhaite définir la hauteur/largeur de l'image de niveau supérieur (et non de l'arrière-plan), la taille de l'image doit être personnalisée au lieu de remplir le bouton automatiquement

14
George_BJ

Vous pouvez simplement utiliser l'attribut scaleType de ImageButton. Réglez-le sur fitXY ou fitCenter ou toute autre option en fonction de vos besoins.

comme ça

<ImageButton
    Android:id="@+id/imageButton"
    Android:layout_width="100dp"
    Android:layout_height="100dp"
    Android:scaleType="fitCenter"
    Android:src="@drawable/some_image">
</ImageButton>
20
user3426273

Vous pouvez utiliser Bitmap.createScaledBitmap pour redimensionner l'image à la taille souhaitée.

Bitmap image = ... //load image from your source
image = Bitmap.createScaledBitmap(image, desiredHeight, desiredWidth, true);
6
Chris

J'ai eu le même problème ... changez la taille de l'image 'src' du bouton image (pas la taille du bouton, mais uniquement l'image).

ce que j'ai fait--

J'ai déplacé ces fichiers «.png» du dossier «drawable» vers le dossier «drawable-hdpi».

bizarre ... mais ça a marché.

merci,

3
Zakynthos

xml

<ImageButton
Android:id="@+id/picture_id"
Android:layout_width="10dp"  //here width with unit. 5 dp exemple
Android:layout_height="3dp"  //here height with unit. 3 dp exemple
Android:src="@drawable/picture_name"
/>

EDIT: (code Java)

// load the origial BitMap (500 x 500 px)
    Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(),
           R.drawable.Android);

    int width = bitmapOrg.width();
    int height = bitmapOrg.height();
    int newWidth = 200;
    int newHeight = 200;

    // calculate the scale - in this case = 0.4f
    float scaleWidth = ((float) newWidth) / width;
    float scaleHeight = ((float) newHeight) / height;

    // create a matrix for the manipulation
    Matrix matrix = new Matrix();
    // resize the bit map
    matrix.postScale(scaleWidth, scaleHeight);
    // rotate the Bitmap
    matrix.postRotate(45);

    // recreate the new Bitmap
    Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0,
                      width, height, matrix, true);

    // make a Drawable from Bitmap to allow to set the BitMap
    // to the ImageView, ImageButton or what ever
    BitmapDrawable bmd = new BitmapDrawable(resizedBitmap);

    ImageView imageView = new ImageView(this);

    // set the Drawable on the ImageView
    imageView.setImageDrawable(bmd);

    // center the Image
    imageView.setScaleType(ScaleType.CENTER);

    // add ImageView to the Layout
    linLayout.addView(imageView,
            new LinearLayout.LayoutParams(
                  LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT
            )
    );
3
damson

set padding et scaletype à centerInside

Le rembourrage vous aidera à personnaliser l'image source pour fournir la hauteur et la largeur requises.

 <ImageButton
            Android:layout_width="50dp"
            Android:layout_height="50dp"
            Android:src="@drawable/location"
            Android:padding="10dp"
            Android:scaleType="centerInside"
            Android:background="@drawable/blue_circle_border"/>
0
sudesh