我想使用小于屏幕宽度但高度大于屏幕的图像。我正在考虑使用滚动视图,可以使用整个图像,但拟合会改变图片的原始比例。如何以相同的比例调整宽度和增加高度?这是代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/tutorial"
>
<ScrollView
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:src="@drawable/tutorial">
</ImageView>
</ScrollView>
</LinearLayout>