我有一个带有小图像的图像按钮,但是我似乎无法将图像显示在屏幕上作为其实际尺寸。它会不断扩大以适应按钮的大小。
我发现一些代码看起来应该解决这个问题,但现在它只是导致图像根本不显示。
我是以编程方式进行的,所以我到目前为止都是这样。
moreInfo.setImageResource(R.drawable.info);
moreInfo.setBackgroundDrawable(null);
//had thought that these lines would have fixed it but just cause nothing to display
moreInfo.setMaxHeight(20);
moreInfo.setMaxWidth(20);
moreInfo.setAdjustViewBounds(true);
//end of
moreInfoLP.setMargins(2,2,5,0);
moreInfo.setLayoutParams(moreInfoLP);