Have you set the label text? Otherwise it will be transparent.
Yes, here's what I added in Activity_Create for the map module:
Dim lblDRate As Label
lblDRate.Initialize("")
lblDRate.TextSize = 10
lblDRate.TextColor = Colors.White
lblDRate.Text = "Test"
Activity.AddView(lblDRate,20dip, 10dip, 200dip, 40dip)
' MapPanel.AddView(lblDRate,20dip, 10dip, 200dip, 40dip)
I've tried adding to the Activity and to the MapPanel - w/o any success.
Update: once I added "lblDRate.Color = Colors.Yellow" to give it a background color, I saw it perfectly. Thanks for the help!