当前位置: 代码迷 >> Android >> ImageView 怎么设置宽对齐
  详细解决方案

ImageView 怎么设置宽对齐

热度:290   发布时间:2016-04-28 07:28:31.0
ImageView 如何设置宽对齐
在显示图片时,由于图片的宽高比和屏幕的宽高比不一样,只需要填满宽度即可,高度方向可能超出屏幕以外,也有可能无法布满屏幕,但是图片的宽高比保持不变。

请问如何设置参数?

------解决方案--------------------
用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"
  相关解决方案