我正在尝试创建一个布局,其中在纵向模式下图像适合屏幕。但是,在横向模式下,我只希望将宽度拉伸到屏幕尺寸和要滚动的(图像的)高度。图像的宽高比不应改变。
我的问题是我似乎永远无法获得滚动条,而且我的图像总是垂直挤压。
这是我的 xml 文件:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/meep" >
</ScrollView>
如何更改此代码以使我的图像保持其纵横比并出现垂直滚动条?