我想使用小于屏幕宽度但高度大于屏幕的图像。我正在考虑使用滚动视图,可以使用整个图像,但拟合会改变图片的原始比例。如何调整宽度并以相同的比例增加高度?这是代码:
<?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>
答案 0 :(得分:1)
你不要使用 fill_parent 你想要使用 match_parent
<ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:backround="@drawable/tutorial"/>
答案 1 :(得分:0)
在android:scaleType="CENTER_INSIDE"
中使用Imageview
。