我有一个长的垂直图像(224x1600)。我希望它适合图像宽度,并垂直滚动。它需要可滚动。我已经尝试了一切,但无法让它工作:\
这是我所拥有的
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android1:id="@+id/tab3"
android1:layout_width="fill_parent"
android1:layout_height="fill_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/tiles" />
</LinearLayout>
</ScrollView>
第二个问题是:有没有办法防止图像缩放?图像是 224x1632 并且在我的银河系上以这种方式显示。在 Nexus 7(更大的屏幕但更低的 DP)上,它达到 199x1440。88% 的奇怪缩放比例。我可以防止这种情况吗?我需要它在所有机器上显示 224x1632 并相应地缩放宽度。
非常感谢!