0

我使用 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"
    />
4

1 回答 1

0

似乎问题在于我将layout_widthandlayout_height属性设置为特定值(320x180)。通过更改为warp_content或来解决match_parent

于 2019-04-25T13:29:38.833 回答