B4J Question [ABMaterial] AMBAudioPlayer does not work in ABMContainer or ABMModalSheet

Javier Lovay

Member
Licensed User
Longtime User
Hi, I can't get ABMAudioPlayer to work inside an ABMContainer or an ADMModalSheet.
In the example I show, the two ABMDividers are displayed, but not ABMAudioPlayer, if I add it directly to the main page [page.Cell(1,1).AddComponent(player1)], it works.
I request any suggestions to find the solution.
Thank you very much.


B4X:
    Dim l_separador As ABMDivider
    l_separador.Initialize(page, "l_separador", "divider")
    modal_llamadas.Content.Cell(2,1).AddComponent(l_separador)
    
    Dim player1 As ABMAudioPlayer
    player1.Initialize(page, "player1", False, False, False, "")
    modal_llamadas.Content.Cell(2,1).AddComponent(player1)
    
    Dim ll_separador As ABMDivider
    ll_separador.Initialize(page, "ll_separador", "divider")
    modal_llamadas.Content.Cell(2,1).AddComponent(ll_separador)
 
Top