BigImageViewer

介绍:

基于Subsampling Scale Image View, Fresco, Glide, 和 Picasso的大图加载,支持缩放,可以使用不同的加载库。

运行效果:

使用说明:

依赖

allprojects {
    repositories {
        jcenter()
    }
}
// NOTE that the artifact id has been changed!
compile 'com.github.piasy:BigImageViewer:1.1.1'
// load with fresco
compile 'com.github.piasy:FrescoImageLoader:1.1.1'
// load with glide
compile 'com.github.piasy:GlideImageLoader:1.1.1'

初始化

// MUST use app context to avoid memory leak!
// load with fresco
BigImageViewer.initialize(FrescoImageLoader.with(appContext));
// or load with glide
BigImageViewer.initialize(GlideImageLoader.with(appContext));

注意如果你已经使用了Fresco,请把Fresco.initialize改成BigImageViewer.initialize。

Layout

<com.github.piasy.biv.BigImageView
        android:id="@+id/mBigImage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />

Java

BigImageView bigImageView = (BigImageView) findViewById(R.id.mBigImage);
bigImageView.showImage(Uri.parse("http://code2png.babits.top/images/code_1477885912.cpp.png"));
已下载
0