Hi All, I am trying to place a backgroundimage in a modalsheet header and it does not appear to work. The following is sample of my code in the modalsheet
B4X:
Sub BuildAccountModalSheet() As ABMModalSheet
Dim myModalAccount As ABMModalSheet
myModalAccount.Initialize(page, "myModalAccount", True, ABM.MODALSHEET_SIZE_FULL, "")
myModalAccount.Header.UseTheme("modalheader")
myModalAccount.Header.SetBackgroundImage(ABM.COLOR_BLUE,ABM.INTENSITY_DARKEN4,"../images/pagebackground.png",ABM.CONTAINERIMAGE_REPEAT_REPEAT,ABM.CONTAINERIMAGE_POSITION_CENTERCENTER)
myModalAccount.Content.UseTheme("sectionContainerTheme0")
myModalAccount.Footer.UseTheme("modalfooter")
myModalAccount.Size = ABM.MODALSHEET_SIZE_FULL
myModalAccount.IsDismissible = False
....