溫馨提示×

溫馨提示×

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

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

SmartImageView初接觸

發(fā)布時間:2020-08-04 10:12:03 來源:網(wǎng)絡(luò) 閱讀:584 作者:老婆的寶寶 欄目:移動開發(fā)

最近一直在學(xué)習(xí)從遠(yuǎn)程服務(wù)器獲取圖片,開始時都是手寫這些處理,后來接觸到了smartImageview這個插件。github獲取地址:https://github.com/loopj/android-smart-p_w_picpath-view

官方原版插件說明

Overview

        SmartImageView is a drop-in replacement for Android’s standard ImageView which additionally allows p_w_picpaths to be loaded from URLs or the user’s contact address book. Images are cached to memory and to disk for super fast loading.


Features

    • Drop-in replacement for ImageView

    • Load p_w_picpaths from a URL

    • Load p_w_picpaths from the phone’s contact address book

    • Asynchronous loading of p_w_picpaths, loading happens outside the UI thread

    • Images are cached to memory and to disk for super fast loading

    • SmartImage class is easily extendable to load from other sources


其中用到的就是:setImageUrl()方法,該方法有好幾個重載方法,用到了這個

setImageUrl(String url,int fallbackResource)

這個方法的參數(shù)解析如下:url當(dāng)然是遠(yuǎn)程圖片的地址,第二個參數(shù)是當(dāng)獲取遠(yuǎn)程圖片失敗時,顯示的圖片,是一個int類型的res下的圖片的一個id


        在使用時,直接在布局文件里使用SmartImageView就行,這個類繼承自ImageView

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"

   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical">
   
   <com.yuanlp.smartp_w_picpathview.loopj.android.p_w_picpath.SmartImageView
       android:id="@+id/siv"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"/>

</LinearLayout>

在MainActivity 中

com.yuanlp.smartp_w_picpathviewandroid.support.v7.app.AppCompatActivityandroid.os.Bundlecom.yuanlp.smartp_w_picpathview.loopj.android.p_w_picpath.SmartImageViewMainActivity AppCompatActivity {

    (Bundle savedInstanceState) {
        .onCreate(savedInstanceState)setContentView(R.layout.)SmartImageView siv=(SmartImageView) findViewById(R.id.)siv.setImageUrl(R.drawable.)}
}



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI