summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRoman Birg <roman@cyngn.com>2016-08-17 11:20:56 -0700
committerMichael Bestas <mkbestas@lineageos.org>2019-10-29 20:23:47 +0200
commit27c3a8ec28926800351fad36f7686db9807710de (patch)
tree20aa66ea04c79577d1c014374808905d22484c24 /src
parent12dd706b0dfa94ebc1c1b9b5f055b27e6a68814a (diff)
downloadandroid_packages_apps_Messaging-27c3a8ec28926800351fad36f7686db9807710de.tar.gz
android_packages_apps_Messaging-27c3a8ec28926800351fad36f7686db9807710de.tar.bz2
android_packages_apps_Messaging-27c3a8ec28926800351fad36f7686db9807710de.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: Ia8755a1b10ac678c304ac7e1208336e11fbe7b77 Signed-off-by: Roman Birg <roman@cyngn.com>
Diffstat (limited to 'src')
-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 722bb9c..5c97c1c 100644
--- a/src/com/android/messaging/ui/conversation/ConversationFragment.java
+++ b/src/com/android/messaging/ui/conversation/ConversationFragment.java
@@ -565,6 +565,7 @@ public class ConversationFragment extends Fragment implements ConversationDataLi
@Override
public void run() {
view.setAlpha(1);
+ dispatchAddFinished(holder);
}
});
mPopupTransitionAnimation.startAfterLayoutComplete();