Android:ImageButtonの画像(背景の代わりにsrc画像)の高さ/幅を設定するにはどうすればよいですか?
トップレベルの画像(背景ではない)の画像の高さ/幅を設定したいのですが、ボタンを自動的にフルフィルするのではなく、画像のサイズをカスタマイズする必要があります
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>
Bitmap.createScaledBitmapを使用して、画像を必要なサイズに拡大縮小できます。
Bitmap image = ... //load image from your source
image = Bitmap.createScaledBitmap(image, desiredHeight, desiredWidth, true);
同じ問題が発生しました...画像ボタンの「src」画像のサイズを変更します(画像のボタンのみのサイズではありません)。
私がしたこと -
それらの「.png」ファイルを「drawable」フォルダから「drawable-hdpi」フォルダに移動しました。
奇妙な...しかしそれはうまくいった。
ありがとう、
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
)
);
paddingおよびscaletypeを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"/>