Top

Android Bubble problem after accepting invitation

Commentaires

1 commentaire

  • Jonathan PETIT

    Hi,

     

    Do you try this?

     

    LISTEN TO AN INVITATION


    There is no event to listen which would be triggered when you receive an invitation to join a Bubble.

    However, you can listen to the data changed of the list getAllBubbles() which is an ArrayItemList. See guide Using ArrayItemList.

    This list includes all Bubble: active, pending, archived.

    To listen to the list:

    
        RainbowSdk.instance().bubbles().getAllBubbles().registerChangeListener(m_changeListener);
    
    

    Do not forget to unregister:

    
        RainbowSdk.instance().bubbles().getAllBubbles().unregisterChangeListener(m_changeListener);
    
    

    And provide the object:

    
        private IItemListChangeListener m_changeListener = new IItemListChangeListener() {
            @Override
            public void dataChanged() {
                // Do something in the thread UI
            }
        };
    
    

    In the API dataChanged(), you can update, for example the UI, by getting the list you need:

    • getAllList(): all Bubbles except pending and archived

    • getPendingList(): pending Bubbles (invited to join)

    • getMyList(): my Bubbles (Bubbles you own)

    • getArchivedList(): archived Bubbles

     

     

    0
    Actions pour les commentaires Permalien

Vous devez vous connecter pour laisser un commentaire.

Vous n'avez pas trouvé ce que vous cherchez?

  • Contactez-nous

    Vous avez des questions? Laissez-nous un message pour obtenir plus d'informations.

    Contactez-nous
  • Demandez à la Communauté

    Vous avez besoin d'aide? Posez vos questions à la Communauté et obtenez des réponses d'autres utilisateurs Rainbow.

    Poster un message