用于将缩略图动画化为类似于 Facebook 的全尺寸屏幕的开源库
Open source Libraries for Animating thumbnail to full size screen similar to Facebook
想知道是否有任何开源库可用于 Android,类似于 IDMPhotoBrowser 可用于 iOS。这个库非常好,提供从原始图像放大到完整视图(动画缩略图到全尺寸屏幕)、滑动以关闭图像等类似于 Facebook 的功能。我想为 Android 实现类似的功能,所以 Android 是否有提供这些功能并且易于定制的库?
提前致谢!
PhotoView 是 Chris Banes 的库,它是 Android 的 ImageView 的实现,支持通过各种触摸手势进行缩放。
此外,Facebook 的图像管理库 Fresco has a SimpleDraweeView
(Customized Image View) that supports ZoomableDraweeView with sample code。
但是使用 Fresco 实现这种小的缩放效果会花费时间。
想知道是否有任何开源库可用于 Android,类似于 IDMPhotoBrowser 可用于 iOS。这个库非常好,提供从原始图像放大到完整视图(动画缩略图到全尺寸屏幕)、滑动以关闭图像等类似于 Facebook 的功能。我想为 Android 实现类似的功能,所以 Android 是否有提供这些功能并且易于定制的库?
提前致谢!
PhotoView 是 Chris Banes 的库,它是 Android 的 ImageView 的实现,支持通过各种触摸手势进行缩放。
此外,Facebook 的图像管理库 Fresco has a SimpleDraweeView
(Customized Image View) that supports ZoomableDraweeView with sample code。
但是使用 Fresco 实现这种小的缩放效果会花费时间。