B4J Question ABMaterial - ABMList

codie01

Active Member
Licensed User
Longtime User
Does any one know how to remove the border on an ABMList. There is no property in either the component or the the theme, thanks in advance, Phil

Component:

B4X:
        Dim listMenu1 As ABMList
        listMenu1.Initialize(page, "listMenu1", ABM.COLLAPSE_EXPANDABLE, "listTheme1")
        listMenu1.AddItem("M1", BuildSimpleItem("L1M1","","{NBSP}{B}Sales Summary{/B}"))
        listMenu1.AddItem("M2", BuildSimpleItem("L1M2","","{NBSP}{B}Sales Trends{/B}"))
        listMenu1.AddItem("M3", BuildSimpleItem("L1M3","","{NBSP}{B}Items{/B}"))
        listMenu1.AddItem("M4", BuildSimpleItem("L1M3","","{NBSP}{B}Catagory Sales{/B}"))
        listMenu1.AddItem("M5", BuildSimpleItem("L1M3","","{NBSP}{B}Discounts{/B}"))

Theme:

B4X:
    MyTheme.AddListTheme("listTheme1")
    MyTheme.List("listTheme1").ZDepth = ABM.ZDEPTH_REMOVE
    MyTheme.List("listTheme1").Colorize(ABM.COLOR_BLUE)
    MyTheme.List("listTheme1").ItemDividerColor = ABM.COLOR_TRANSPARENT
    MyTheme.List("listTheme1").BackColor = ABM.COLOR_TRANSPARENT
    MyTheme.List("listTheme1").SubItemDividerColor = ABM.COLOR_TRANSPARENT
 

Cableguy

Expert
Licensed User
Longtime User
you should alter the thread title to include what it is about.
ABMaterial is a very complex framework, and the ABMList is just one of many components.
 
Upvote 0
Top