I'm looking at this example, but here the code wants to use some layout file, but I dont have that in my code..
http://code.google.com/intl/da/mobile/ads/docs/android/fundamentals.html
My activity looks like this.. I have no clue how to add the admob view to the view I use here..
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
GameView vw = new GameView( this, intDpi );
setContentView(vw);
}
You can create a layout above the GameView and put the GameView and the AdView into this layout. The below example uses a RelativeLayout and puts the add at the bottom of the screen.