新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本篇文章为大家展示了怎么在Android中利用Glide获取图片的宽高,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
关岭网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、成都响应式网站建设公司等网站项目制作,到程序开发,运营维护。创新互联自2013年起到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。
//获取图片显示在ImageView后的宽高 Glide.with(this) .load(imgUrl) .asBitmap()//强制Glide返回一个Bitmap对象 .listener(new RequestListener() { @Override public boolean onException(Exception e, String model, Target target, boolean isFirstResource) { Log.d(TAG, "onException " + e.toString()); return false; } @Override public boolean onResourceReady(Bitmap bitmap, String model, Target target, boolean isFromMemoryCache, boolean isFirstResource) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Log.d(TAG, "width3 " + width); //400px Log.d(TAG, "height2 " + height); //400px return false; } }).into(mIv_img);
想要拿到图片真正的宽高,应该利用Glide的Target。如下:
//获取图片真正的宽高 Glide.with(this) .load(imgUrl) .asBitmap()//强制Glide返回一个Bitmap对象 .into(new SimpleTarget() { @Override public void onResourceReady(Bitmap bitmap, GlideAnimation super Bitmap> glideAnimation) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Log.d(TAG, "width " + width); //200px Log.d(TAG, "height " + height); //200px } });
完整代码
MainActivity.java
public class MainActivity extends AppCompatActivity { private ImageView mIv_img; String imgUrl = "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=523024675,1399288021&fm=117&gp=0.jpg"; private String TAG = this.getClass().getSimpleName(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mIv_img = (ImageView) findViewById(R.id.iv_img); //获取图片真正的宽高 Glide.with(this) .load(imgUrl) .asBitmap()//强制Glide返回一个Bitmap对象 .into(new SimpleTarget() { @Override public void onResourceReady(Bitmap bitmap, GlideAnimation super Bitmap> glideAnimation) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Log.d(TAG, "width " + width); //200px Log.d(TAG, "height " + height); //200px } }); //获取图片显示在ImageView后的宽高 Glide.with(this) .load(imgUrl) .asBitmap()//强制Glide返回一个Bitmap对象 .listener(new RequestListener () { @Override public boolean onException(Exception e, String model, Target target, boolean isFirstResource) { Log.d(TAG, "onException " + e.toString()); return false; } @Override public boolean onResourceReady(Bitmap bitmap, String model, Target target, boolean isFromMemoryCache, boolean isFirstResource) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Log.d(TAG, "width3 " + width); //400px Log.d(TAG, "height2 " + height); //400px return false; } }).into(mIv_img); } }
activity_main.xml
上述内容就是怎么在Android中利用Glide获取图片的宽高,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注创新互联行业资讯频道。