Android: как установить высоту / ширину изображения src для ImageButton? - PullRequest
14 голосов
/ 17 ноября 2011

Android: как установить высоту / ширину изображения (src image intead на фоне) ImageButton?

Я хочу установить высоту / ширину изображения верхнего уровня (не фона), размер изображения должен быть настроен, вместо того, чтобы автоматически заполнять кнопку

Ответы [ 5 ]

20 голосов
/ 15 апреля 2014

Вы можете просто использовать атрибут scaleType ImageButton.Установите значение fitXY или fitCenter или что-либо еще в соответствии с вашими потребностями.

как это

<ImageButton
    android:id="@+id/imageButton"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:scaleType="fitCenter"
    android:src="@drawable/some_image">
</ImageButton>
6 голосов
/ 07 августа 2012

Вы можете использовать Bitmap.createScaledBitmap, чтобы масштабировать изображение до желаемого размера.

Bitmap image = ... //load image from your source
image = Bitmap.createScaledBitmap(image, desiredHeight, desiredWidth, true);
3 голосов
/ 10 февраля 2016

У меня была такая же проблема ... изменить размер изображения кнопки изображения 'src' (не размер кнопки, а только изображение).

что я сделал -

Я переместил этот файл .png из папки drawable в папку drawable-hdpi.

странно ... но это сработало.

спасибо,

3 голосов
/ 17 ноября 2011

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"
/>

РЕДАКТИРОВАТЬ: (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
            )
    );
1 голос
/ 29 декабря 2018

установите отступы и тип масштаба centerInside

Заполнение поможет вам настроить исходное изображение для обеспечения требуемой высоты и ширины.

 <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"/>
...