Android Question Customer list view/treeview

MattC

Member
Licensed User
Longtime User
I'm using the custom list view class to display data.

The data displayed is a summary of other fields (streets made up of houses). I'd like to enable the user to click on a street and display the individual houses that make up the street.

I'd like something like a treeview that can display fields because it's intuitive and familiar.

Best I can come up with is a CLV with indented fields for the streets when the user wants to see them.

Street
-house1
-house2

Not so much looking for code as the general method for making this intuitive like a treeview and display data like the custom list view.
 

John Sturt

Active Member
Licensed User
Longtime User
Hi
So you want to use text and gfx on the same line?
You could use Scrollview this way you can add any view
i.e label,bitmap,imageviewat any position and then scroll freely throughout the lot of them.

Hope this helps.
 
Upvote 0
Top