使用PhotoView放大后无法达到图像的原始大小

时间:2019-04-24 16:03:05

标签: java c# android xamarin android-photoview

我使用Chris Bane的PhotoView来显示ImageViews。 放大后,我无法缩小到图像的原始尺寸。边界似乎太小,但是还有其他解释吗?

xml photoview设置:

    <com.github.chrisbanes.photoview.PhotoView
        android:id = "@+id/ScreenshotPhotoView"
        android:src = "@drawable/LogoImg"
        android:layout_marginTop = "40dp"
        android:layout_marginBottom = "40dp"
        android:layout_width="320dp"
        android:layout_height="180dp"
        android:layout_gravity = "center_horizontal"
        android:scaleType = "fitCenter"
    />

1 个答案:

答案 0 :(得分:0)

似乎问题出在我将layout_widthlayout_height属性设置为特定值(320x180)的事实。 通过更改为warp_contentmatch_parent来解决。