本篇文章為大家展示了怎么在Android中利用Glide獲取圖片的寬高,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
關(guān)嶺網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、APP開(kāi)發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開(kāi)發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)自2013年起到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專(zhuān)注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
//獲取圖片顯示在ImageView后的寬高 Glide.with(this) .load(imgUrl) .asBitmap()//強(qiáng)制Glide返回一個(gè)Bitmap對(duì)象 .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);
想要拿到圖片真正的寬高,應(yīng)該利用Glide的Target。如下:
//獲取圖片真正的寬高 Glide.with(this) .load(imgUrl) .asBitmap()//強(qiáng)制Glide返回一個(gè)Bitmap對(duì)象 .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()//強(qiáng)制Glide返回一個(gè)Bitmap對(duì)象 .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()//強(qiáng)制Glide返回一個(gè)Bitmap對(duì)象 .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
上述內(nèi)容就是怎么在Android中利用Glide獲取圖片的寬高,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。