图像太宽

时间:2013-09-30 09:44:18

标签: java android android-imageview horizontalscrollview

我想在某些布局上显示ImageView,但我无法以正确的方式进行。我的图像非常宽,我想将其高度拉伸到屏幕,但宽度不应拉伸屏幕的宽度。我的ImageView(实际上是扩展ImageView的类)是智能的,所以我可以通过拖动来移动它。我不想使用Horizo​​ntalScrollView,因为当我拖动图像时,onDrag事件被父(Horizo​​ntalScrollView)拦截,而不是我的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>

0 个答案:

没有答案