@Override
public void setImageDrawable(Drawable drawable)
{
super.setImageDrawable(drawable);
if (drawable instanceof PicassoDrawable)
{
PicassoDrawable pDrawable = (PicassoDrawable) drawable;
BitmapDrawable bitmapDrawable = (BitmapDrawable) pDrawable.getImage();
if (bitmapDrawable.getBitmap() != null)
{
bmWidth = bitmapDrawable.getBitmap().getWidth();
bmHeight = bitmapDrawable.getBitmap().getHeight();
}
}
}
TouchImageView.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:Klyph
作者:
评论列表
文章目录