我想在某些布局上显示ImageView,但我无法以正确的方式进行。我的图像非常宽,我想将其高度拉伸到屏幕,但宽度不应拉伸屏幕的宽度。我的ImageView(实际上是扩展ImageView的类)是智能的,所以我可以通过拖动来移动它。我不想使用HorizontalScrollView,因为当我拖动图像时,onDrag事件被父(HorizontalScrollView)拦截,而不是我的ImageView。
任何帮助将不胜感激。提前谢谢。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<pl.tripassistant.util.PhotoView
android:id="@+id/snoop"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:clickable="true"
android:scaleType="fitXY" />
</LinearLayout>