Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ protected void onDraw(Canvas canvas) {
}
}

// Invalidate the whole view. Doing this calls onDraw() if the view is visible.
invalidate();
}

/**
Expand Down Expand Up @@ -231,6 +229,7 @@ protected void onPostExecute(Bitmap bitmap) {
if (mDroidCardsReference != null && bitmap != null) {
// Create a new DroidCard.
mDroidCards.add(new DroidCard(droid, bitmap));
invalidate();
}
}
}
Expand Down