小さな画像の画像ボタンがありますが、画像を実際のサイズで画面に表示できないようです。ボタンのサイズに合わせて拡大し続けます。
この問題を修正する必要があるように見えるコードをいくつか見つけましたが、現在は画像がまったく表示されないだけです。
私はプログラムでそれをやっているので、これまでのところ私が持っているものはここにあります。
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);