Android Question Which is best? xCustomlistview, TabstripViewPager...?

Rusty

Well-Known Member
Licensed User
Longtime User
I am trying to organize three levels of information and display it and have tried custom list views, tab strip, checklist class, … Although they can probably be forced, I am wondering if there is a natural solution already out there.
My data is thus:
B4X:
Level 1
    Level 2
        Level 3
        Level 3
        Level 3
        …
    Level2
        Level 3
        Level 3
        …
Level 1
    Level2
        Level 3
        ...

It would be nice to be able to scroll Level1's since there may be many and also to scroll Level3's since there are obviously many. It is also possible that Level2's under a Level1 can occur many (scrollable) times.
This seems like it should be easy, but I'm not seeing it.
Any advice will be appreciated!
Rusty
 

RB Smissaert

Well-Known Member
Licensed User
Longtime User
I am trying to organize three levels of information and display it and have tried custom list views, tab strip, checklist class, … Although they can probably be forced, I am wondering if there is a natural solution already out there.
My data is thus:
B4X:
Level 1
    Level 2
        Level 3
        Level 3
        Level 3
        …
    Level2
        Level 3
        Level 3
        …
Level 1
    Level2
        Level 3
        ...

It would be nice to be able to scroll Level1's since there may be many and also to scroll Level3's since there are obviously many. It is also possible that Level2's under a Level1 can occur many (scrollable) times.
This seems like it should be easy, but I'm not seeing it.
Any advice will be appreciated!
Rusty

Looks you could do with a treeview.
Can't see an obvious, available treeview though.

RBS
 
Upvote 0

Rusty

Well-Known Member
Licensed User
Longtime User
Yes, I agree and I can't find one either.
However, I have been playing with:
load a tabstrip Level1
load a listview Level2..Level2..
load a tabstrip Level3, level3, level3...
I don't have it figured out yet, but it looks promising...
Thanks for your idea.
Rusty
 
Upvote 0
Top