目前我有一组图像,每个图像的分辨率为480x640。
当我使用googling(TouchImageView)获得的图像显示库缩放图像时,图像有点模糊。 是否可以使用更高分辨率的图像,以便在缩放时图像不会模糊?
据我所知,Android中的图片将按宽度缩放,但高度不会缩放,对吧?
这是我的图像显示器代码:
<com.km.parkit.TouchImageView
android:id="@+id/overview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:contentDescription="@string/imageDesc"
android:scaleType="matrix"
android:src="@drawable/parkinglot" />