jitsi / jitsi-android

Jitsi for Android is an Android port of the Jitsi project: The most feature-rich communicator with support for encrypted audio/video, chat and presence over SIP and XMPP
Apache License 2.0
415 stars 258 forks source link

Chat issues #11

Open jitsi-jenkins opened 9 years ago

jitsi-jenkins commented 9 years ago

When chats are reordered in phone layout we can end up with blank chat window. It's caused by FragmentStatePagerAdapter issue described here: https://code.google.com/p/android/issues/detail?id=37990 Fix provided in the thread can be used to resolve the issue however it's not perfect as some other glitches have been found: We have chats A, B and C opened. Close chat B and minimize the activity(by going to home) will cause exception that fragment is not contained in FragmentManager when the state is being stored. It is not removed properly from maintained framgents list on delete event and then adapter attempts to store it's state.

(Issue migrated from https://trac.jitsi.org/ticket/1286)