What's your advice for creating a left sidebar menu (with submenus) like the one in the image? The example is from the Thunderbird desktop application.
Edit: Cross platform example based on B4XPages https://www.b4x.com/android/forum/threads/b4x-b4xpages-b4xdrawer.120246/ A class that implements a sliding menu. Unlike the nice jfeinstein SlidingMenu library the drawer covers the activity instead of pushing it. It is similar to the various...
CLVTree extends xCustomListView and turns it into a tree view: Usage: 1. Add a CustomListView with the designer. 2. Initialize CLVTree and add items: Tree.Initialize(CustomListView1) For i = 1 To 10 Dim item As CLVTreeItem = Tree.AddItem(Tree.Root, $"Item #${i}"$, Null, "")...
I use the treeview and treeviewhelper, I think it is called, in my app. Search for SnippetsForB4X on the forum here. You'll see some screen shots of it in use.
It works great. With the treeviewhelper, you can search the tree view.
I use the treeview and treeviewhelper, I think it is called, in my app. Search for SnippetsForB4X on the forum here. You'll see some screen shots of it in use.
It works great. With the treeviewhelper, you can search the tree view.
Yes, another code snippet manager, but slightly different. It uses the TreeView and TreeViewExtended view and code. So you can search on the TreeView, using the TreeViewExtended search feature. Screen shot of the B4J desktop app: Current Features: - comes with the main Categories: B4A, B4J...