小编Ste*_*te_的帖子

调整ImageButton背景的图像大小

我想创建一个ImageButton并将图像设置为保持原始大小的背景.所以我在StackOverflow上也使用了几行代码:

ImageButton retry = new ImageButton(this);

Bitmap image = BitmapFactory.decodeResource(getResources(), R.drawable.button2);
retry.setImageBitmap(image);
retry.setMinimumWidth(image.getWidth());  
retry.setMinimumHeight(image.getHeight());
Run Code Online (Sandbox Code Playgroud)

但不幸的是我获得了以下结果:

的ImageButton

显然我不想要"背景按钮",而只需要图像.我能怎么做?

android imagebutton

0
推荐指数
1
解决办法
1215
查看次数

标签 统计

android ×1

imagebutton ×1