嗨,我在xamarin有点新手,而且我遇到了imageview的问题。我的图像是矩形(1080x293),但在Imageview中,底部和顶部的边缘似乎是平方,图像保持在中间!我想将图像对齐在顶部,尝试使用填充属性,设置宽度和高度,但没有任何作用!如何将其设置在顶部? 一些帮助将不胜感激,谢谢你,抱歉这个愚蠢的问题! 这是一段代码!
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/titleIMG"
android:layout_marginBottom="0.0dp"
android:layout_marginTop="0.0dp"/>
答案 0 :(得分:3)
前几天我遇到了同样的问题。我刚刚浏览了这些属性并找到了这个:“adjustViewBounds”,它可以让你保持你的pic的真实比例。 只需将其添加到您的代码中:
android:adjustViewBounds="true"