我使用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"
/>
答案 0 :(得分:0)
似乎问题出在我将layout_width
和layout_height
属性设置为特定值(320x180)的事实。
通过更改为warp_content
或match_parent
来解决。