How do you integrate adverts with a Canvas view

265 views Asked by At

How do you integrate adverts with a Canvas view, I am using mobclix, I want the mobclix layout so it appears above the Canvas view. I use the canvas for a game. Can you give code example please.

1

There are 1 answers

0
androidavid On

Yes! setContentView in the same activity will SET the content, not ADD.

What you have to do is (in your Activity!):

setContentView(R.layout.main);
RelativeLayout r = (RelativeLayout)findViewById(R.id.ID_TO_YOUR_RELATIVE_LAYOUT_ELEMENT);
r.addView(_panelView);