我是靠谱客的博主 清脆手套,最近开发中收集的这篇文章主要介绍图片缩大,缩小,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

第一步:导入依赖

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

第二步:XML布局

xmlns:tools="http://schemas.android.com/tools"
<com.bm.library.PhotoView
    android:id="@+id/photoview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:adjustViewBounds="true"
    tools:src="@mipmap/ic_launcher"
    tools:targetApi="lollipop"></com.bm.library.PhotoView>

第三步:

PhotoView photoview= this.findViewById(R.id.photoview);
ButterKnife.bind(this);
//传过来的url地址
Intent intent = getIntent();
String url = intent.getStringExtra("key");
photoview.enable();
Glide.with(this).load(url).into(photoview);

最后

以上就是清脆手套为你收集整理的图片缩大,缩小的全部内容,希望文章能够帮你解决图片缩大,缩小所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部