浏览照片 手势操作放大 PhotoView

引入依赖:

implementation 'com.bm.photoview:library:1.4.1'

使用时添加布局:

    <com.bm.library.PhotoView
        android:id="@+id/photoView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/picture_demo"
        android:scaleType="fitCenter"/>

接着要在java代码中启动其手势操作:

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

可以与对话框配合做出点击图片放大进行浏览的功能。

猜你喜欢

转载自www.cnblogs.com/zhaozilongcjiajia/p/11130765.html