我想以编程方式将较大的图像设置为 Android 中 ImageButton 的背景,并将其高度和宽度设置为固定。我可以按如下方式创建图像按钮。但是图像的大小越大。如何根据按钮的大小固定其大小。
ImageButton b0=new ImageButton(this);
b0.setMaxWidth(100);
b0.setMinimumWidth(100);
b0.setMaxHeight(80);
b0.setBackgroundResource(R.drawable.tattoo0);
tattooListView.addView(b0);
提前致谢