91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Glide圖片加載框架怎么在Android應用中使用

發布時間:2020-12-02 15:20:26 來源:億速云 閱讀:167 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關Glide圖片加載框架怎么在Android應用中使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

簡介

Glide是一款圖片加載框架,可以在Android平臺上以簡單的方式加載和展示圖片。

dependencies {
  compile 'com.github.bumptech.glide:glide:3.7.0'
}

在清單文件中加入權限

<uses-permission android:name="android.permission.INTERNET" />

加載圖片

新建布局文件

activity_main.xml

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">

  <Button
    android:id="@+id/load_image"
    android:layout_marginTop="10dp"
    android:layout_gravity="center_horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="加載圖片"/>

  <ImageView
    android:layout_marginTop="10dp"
    android:id="@+id/image"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

</LinearLayout>

MainActivity.java

package com.zhoujian.glide;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import com.bumptech.glide.Glide;

public class MainActivity extends AppCompatActivity
{

  private Button mLoad_image;
  private ImageView mImage;

  @Override
  protected void onCreate(Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    initViews();
    clickEvent();
  }


  private void initViews()
  {
    mLoad_image = (Button)findViewById(R.id.load_image);
    mImage = (ImageView)findViewById(R.id.image);
  }

  private void clickEvent()
  {
    mLoad_image.setOnClickListener(new View.OnClickListener()
    {
      @Override
      public void onClick(View v)
      {
        String url= "http://sc.jb51.net/uploads/allimg/150709/14-150FZ94211O4.jpg";

        Glide.with(MainActivity.this).load(url).into(mImage);

      }
    });

  }
}

只要一行代碼,就可以把圖片加載進來

調用Glide.with()方法用于創建一個圖片的實例。with方法可以接受Context、Activity和Fragment類型的參數。如果調用不在Activity中或者Fragment中,可以傳入ApplicationContext。

Glide支持加載各種圖片資源,包括網絡圖片、本地圖片、應用資源、Uri對象等

// 加載本地圖片
File file = new File(getExternalCacheDir() + "/demo.jpg");
Glide.with(this).load(file).into(imageView);

// 加載應用資源
Glide.with(this).load(R.drawable.image).into(imageView);

// 加載二進制流
byte[] image = getImageBytes();
Glide.with(this).load(image).into(imageView);

// 加載Uri對象
Uri imageUri = getImageUri();
Glide.with(this).load(imageUri).into(imageView);

占位圖

  Glide.with(MainActivity.this)
     .load(url)
     .placeholder(R.mipmap.placeholder)
     .into(mImage);

異常占位圖

//錯誤的圖片地址
String url1 = "http://sc.net/uploads/allimg/150709/14-150FZ94211O4.jpg";

Glide.with(MainActivity.this)
    .load(url1)
    .placeholder(R.mipmap.placeholder)//加載占位圖
    .error(R.mipmap.error)//異常占位圖
    .into(mImage);

指定圖片格式

Glide支持加載GIF圖片的,而Picasso是不支持加載GIF圖片的。

String url2 = "https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=3396140532,1228025744&fm=23&gp=0.jpg";

Glide.with(MainActivity.this)
   .load(url2)
   .placeholder(R.mipmap.placeholder)//加載占位圖
   .error(R.mipmap.error)//異常占位圖
   .into(mImage);

只允許加載靜態圖:asBitmap

String url2 = "https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=3396140532,1228025744&fm=23&gp=0.jpg";

Glide.with(MainActivity.this)
   .load(url2)
   .asBitmap()//只允許加載靜態圖
   .placeholder(R.mipmap.placeholder)//加載占位圖
   .error(R.mipmap.error)//異常占位圖
   .into(mImage);

如果傳入的是一個gif動態圖,只會顯示第一幀圖片

只允許加載動態圖:.asGif()

String url2 = "https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=3396140532,1228025744&fm=23&gp=0.jpg";

 Glide.with(MainActivity.this)
    .load(url2)
    .asGif()//只允許加載動態圖
    .placeholder(R.mipmap.placeholder)//加載占位圖
    .error(R.mipmap.error)//異常占位圖
    .into(mImage);

指定圖片大小

使用Glide,我們就不用擔心圖片內存浪費,甚至是內存溢出的問題。
因為Glide從來都不會直接將圖片的完整尺寸全部加載到內存中,而是用多少加載多少。Glide會自動判斷ImageView的大小,然后只將這么大的圖片像素加載到內存當中。

當然我們也可以指定圖片的固定大小

當指定圖片大小的時候,要把ImageView的寬高該為包裹內容

Glide.with(MainActivity.this)
   .load(url)
   .asBitmap()//只允許加載動態圖
   .placeholder(R.mipmap.placeholder)//加載占位圖
   .error(R.mipmap.error)//異常占位圖
   .override(400, 300)
   .into(mImage);

關于Glide圖片加載框架怎么在Android應用中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江山市| 枣庄市| 宜兰市| 双流县| 鹿泉市| 汾阳市| 静海县| 怀仁县| 关岭| 汕尾市| 青岛市| 永定县| 梅河口市| 吉安市| 大埔区| 固镇县| 茂名市| 隆化县| 静安区| 麻江县| 清涧县| 芮城县| 牡丹江市| 抚远县| 上栗县| 云安县| 来宾市| 类乌齐县| 宝鸡市| 璧山县| 东兴市| 广东省| 汉川市| 通化县| 台东市| 岐山县| 洛阳市| 新乐市| 思茅市| 济源市| 原平市|