我有一个背景图像应该在高度上缩放,但保持其纵横比。我尝试了这段代码:
<ImageView
android:id="@+id/iv_background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/bg" />
这适用于potrait模式的手机,但是当我在平板电脑上测试它(默认风景)时,它会缩放宽度并在顶部和底部剪切图像。这是因为xml代码还是因为景观?
答案 0 :(得分:0)
尝试这样的事情:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:scaleType="centerCrop"
android:src="@drawable/background_image"/>
<!-- Your other views -->
</RelativeLayout>