我想創建ImageButton並將圖像設置爲保持原始大小的背景。所以我用代碼中找到的StackOverflow上這幾行太:爲ImageButton背景調整圖像大小
ImageButton retry = new ImageButton(this);
Bitmap image = BitmapFactory.decodeResource(getResources(), R.drawable.button2);
retry.setImageBitmap(image);
retry.setMinimumWidth(image.getWidth());
retry.setMinimumHeight(image.getHeight());
但不幸的是我得到以下結果:
很顯然,我不希望「背景按鈕」,但只圖片。我能怎麼做?
你有沒有試過retry.setBackgroundResource(image); – Zohaib
@Zohaib是的!它是調整大小... –