summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoman Birg <roman@cyngn.com>2016-08-17 11:20:56 -0700
committerRoman Birg <roman@cyngn.com>2016-09-07 11:29:43 -0700
commit5593d34c53c6424bc888a3cd1497753fa58880f8 (patch)
treee7cd480ba53a3fc91c5f84829877862f3a4c863d
parentd0145f11bf1e98061db23f452d1597e876d89103 (diff)
downloadpackages_apps_Messaging-5593d34c53c6424bc888a3cd1497753fa58880f8.tar.gz
packages_apps_Messaging-5593d34c53c6424bc888a3cd1497753fa58880f8.tar.bz2
packages_apps_Messaging-5593d34c53c6424bc888a3cd1497753fa58880f8.zip
Messaging: fix bad recycle on sending two mms in a row
When we are handling the add animation ourself, we need to call the dispatchAdd() to finish the operation so the recycler view can propely handle it. Ticket: CYNGNOS-3253 Change-Id: I7fe17e0f41446122f39bd99a394c3c51754724d3 Signed-off-by: Roman Birg <roman@cyngn.com>
-rw-r--r--src/com/android/messaging/ui/conversation/ConversationFragment.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/messaging/ui/conversation/ConversationFragment.java b/src/com/android/messaging/ui/conversation/ConversationFragment.java
index 71068b8..354431f 100644
--- a/src/com/android/messaging/ui/conversation/ConversationFragment.java
+++ b/src/com/android/messaging/ui/conversation/ConversationFragment.java
@@ -585,6 +585,7 @@ public class ConversationFragment extends Fragment implements ConversationDataLi
@Override
public void run() {
view.setAlpha(1);
+ dispatchAddFinished(holder);
}
});
mPopupTransitionAnimation.startAfterLayoutComplete();