CustomListview
The customlistview is excellent. I really like it. However, it seems to default to using whatever layout is loaded at the time inside the activity_create sub.
So, if you have a main layout that is a tabhost it runs into problems since the tabhost loads all the other layouts... basically it draws the customlistview on the activity panel behind the tabhost. i.e. the customlistview has activity or something like that as it's parent instead of one of the layouts on the tabhost.
So, trying to figure out how to tell customlistview which layout to use so that it appears on the correct layout for a specific tab on the tabhost. Is there anyway to pass customlistview the name of the layout to use?
==============================
UPDATE
==============================
Ok I got customlistview to work with a tabhost by moving the statements for the customlistview to after the tabhost1.addtab() statemments;
TabHost1.AddTab("Radio Show","layoutradioshow")
TabHost1.AddTab("tab 1","layouttab1")
TabHost1.AddTab("tab 2","layouttab2")
.
clv1.Initialize(clv1, "clv1")
Panelcomments.AddView(clv1.AsView, 0, 0, Panelcomments.Width, Panelcomments.Height)
clv1.DefaultTextBackgroundColor = Colors.Gray
Worked like a charm....
Except, not scrolling for some reason... so now got to figure out why not.
=================
UPDATE
=================
Ok got scrolling working again. So the whole thing works amazingly well. Thanks very very very much for your help.