我有什么: ScrollView
,里面
LinearLayout
( orientation="vertical",
layout_width="match_parent",
layout_height="wrap_content"
),
在里面
ImageView
( layout_width="match_parent",
layout_height="wrap_content"
) 和
TextView
.
我想要的: ImageView
应该保持纵横比和数学父宽度,以及下面的文本ImageView
。
我使用了ImageView params
:adjustViewBounds true/false
和 allscaleType
的不同组合,但我无法得到我想要的:
- 如果我使用 scaleType centerCrop - 图像裁剪的顶部和底部。
- 如果我使用 scaleType center - 左右空白
- 如果我使用 scaleType fitXY - 图像不保持纵横比
所以我不能让图像更高,我该如何解决?