2014-02-19 69 views
0

我正在製作一個在列表視圖中顯示來自url的圖像的應用程序。我使用asynctask來獲取圖像並將其放置到圖像視圖中。我目前擁有的方式是在getview方法中調用asynctask。後臺部分的do從url中獲取圖像。我遇到的問題是當我滾動到列表視圖中的一個元素時,最初錯誤的圖像在那裏,但正確的圖像很快加載。這是爲什麼發生?在列表視圖中加載正確的圖像

XML

<?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" > 

<ImageView 
    android:id="@+id/imageView1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:scaleType="fitStart" 
      android:src="@drawable/ic_launcher" /> 

</LinearLayout> 
+0

請發佈您的列表行佈局? –

+0

發佈您的代碼... – Piyush

回答