ImageViewに画像をセットすると、サイズが画像に合わない
layout_heightをwrap_content
にしても変わらないのでハマった
解決法
Stack Overflowに書いてあった
java - Image View not Wrapping Contents - Stack Overflow
adjustViewBounds
をtrue
にすればOK。
activity.xml
<ImageView
android:adjustViewBounds="true"
android:scaleType="fitCenter" />