如何缩放而不会扭曲地图图像

时间:2018-09-03 23:40:17

标签: image zoom distortion android-photoview

我想放大地图并浏览地图,但是图像失真。 我为此使用PhotoView库

    PhotoView photoView=(PhotoView)findViewById(R.id.photo_view);

    Glide.with(this).load(R.drawable.worldmap).into(photoView);

这是我的xml

  <com.github.chrisbanes.photoview.PhotoView
    android:id="@+id/photo_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="center"
    android:layout_above="@+id/adView"/>

如何正确放大?

0 个答案:

没有答案