在显示图片时,由于图片的宽高比和屏幕的宽高比不一样,只需要填满宽度即可,高度方向可能超出屏幕以外,也有可能无法布满屏幕,但是图片的宽高比保持不变。
请问如何设置参数?
------解决方案--------------------
用matrix 等比绽放,但是估计图片边缘绽放后是黑色的
------解决方案--------------------
android:adjustViewBounds="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth=屏幕宽度
------解决方案--------------------
先试试撒
------解决方案--------------------
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitStart"