每次我尝试在PhotoViewAttacher
库的应用程序上使用PhotoView
时,我的应用程序都会崩溃。我正在使用ION
来显示图片并尝试获取PhotoView
库以允许我放大它们。我的代码目前是:
public class massiveImageView extends Activity {
ImageView mImageView;
PhotoViewAttacher mAttacher;
Drawable drawable;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.massive_image_view);
// Any implementation of ImageView can be used!
mImageView = (ImageView) findViewById(R.id.imageViewMassivePage);
Ion.with(this).load("https://pbs.twimg.com/profile_images/522909800191901697/FHCGSQg0.png").withBitmap().asBitmap()
.setCallback(new FutureCallback<Bitmap>() {
@Override
public void onCompleted(Exception e, Bitmap result) {
// do something with your bitmap
drawable=new BitmapDrawable(result);
mImageView.setImageDrawable(drawable);
}
});
mAttacher = new PhotoViewAttacher(mImageView);
}
}
我得到的错误就在这一行:
mAttacher = new PhotoViewAttacher(mImageView);
话说:
java.lang.NoClassDefFoundError: uk.co.senab.photoview.PhotoViewAttacher
非常感谢任何帮助。
答案 0 :(得分:1)
我仍然不太明白为什么它不起作用,但我能够找到答案,而不是添加库的依赖,我只是在网上发现了jar文件并添加了相反,现在一切工作得很完美。 Library Link