我想放大地图并浏览地图,但是图像失真。 我为此使用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"/>
如何正确放大?