Android Question CLVNested and B4XDrawer in the same activity

ThePuiu

Active Member
Licensed User
Longtime User
Is it possible to combine CLVNested and B4XDrawer in the same activity? I remain indebted for a small example ...
 

ThePuiu

Active Member
Licensed User
Longtime User
I didn't try because I don't know how ...

B4X:
    nestedList.Initialize(Activity)
    nestedList.base.LoadLayout("CentralLayout")
    nestedList.CLV = mainCustomListView
      
    Drawer.Initialize(Me, "Drawer", Activity, 300dip)
    Drawer.CenterPanel.LoadLayout("CentralLayout")   'here is based mainCustomListView, in this layout it must be nestedList 
    Drawer.LeftPanel.LoadLayout("DrawerLayout")
 
Upvote 0
Top