After reading some other posts and trying Margrets test app, I got it to work.
A correction in the instructions appear necessary, to whit:
Not only do you need "Activity.Color = Colors.Transparent" (without the quotes), but you also need a panel (let's call it Panel1) and the line
Panel1.Color = Colors.Transparent
I haven't tested whether or not Panel1 needs to be the size of the activity or if it can merely be the size of the app. However, if you don't want what is underneath your app to show through, it seems wise to make Panel1 the size of the activity and make it the parent for a second panel (Panel2) that will serve as the background and parent for the other views of your app.
I have some apps in development that would be greatly oversized and, therefore, groteque on, for example, a 10 inch tablet. To avoid such an unpleasing visual design, I intend to use the approach discussed in this thread.