您好,登錄后才能下訂單哦!
最近一直在學習從遠程服務器獲取圖片,開始時都是手寫這些處理,后來接觸到了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)
這個方法的參數解析如下:url當然是遠程圖片的地址,第二個參數是當獲取遠程圖片失敗時,顯示的圖片,是一個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.)} }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。