Android 加載網絡圖片 以漸顯動畫展示

通常爲了增加用戶的體驗感與友好感,我們在處理網絡圖片,加載時應該以 漸顯 動畫  效果 來 展示圖片,

至於如何通過網絡,加載圖片,創建Bitmap對象,這裏不就多說.

關鍵代碼如下:


TransitionDrawable td = new TransitionDrawable(
	new Drawable[] {
			new ColorDrawable(android.R.color.transparent),
			new BitmapDrawable(bitmap) });
td.setCrossFadeEnabled(true);
imageView.setImageDrawable(td);
td.startTransition(300);


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章