Not loading an image from sd everytime (use WeakReference?)
问题 I have this list of people and each person has an avatar. There's a default avatar for everyone and later you can change it (the app saves the resized and circle-cropped image to the sd). Here's my approach: <ImageView android:id="@+id/photo_list_item" android:layout_width="70dip" android:layout_height="70dip" android:layout_marginRight="16dip" android:contentDescription="@string/avatar_descp" android:src="@drawable/defavatar" > </ImageView> This is part of the item that forms the list.