android - Admob integration into AndEngine BaseGameActivity, alternative to SurfaceView? -
alright. have been making game app in android using andengine. i've gotten point want implement ads game , i've been trying use admob purpose.
problem however, every example , i've found on internet points using layouts it. game i'm creating doesn't utilize layouts whatsoever. uses camera function display things. i.e
@override public engineoptions oncreateengineoptions() { camera = new camera(0, 0, 1024f, 1024f); engineoptions engineoptions = new engineoptions(true, screenorientation.landscape_fixed, new fillresolutionpolicy(), this.camera); engineoptions.getaudiooptions().setneedsmusic(true).setneedssound(true); return engineoptions; }
is there possible alternative, possibly using camera display banner ads?
thanks.
actually no. still using andengine can use layouts show ads. here example use in andengine game (it based on modified example andengine forum: http://www.andengine.org/forums/tutorials/google-admob-in-andengine-tutorial-t10822.html):
@override public void oncreate(bundle savedinstancestate){ super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); final displaymetrics displaymetrics = new displaymetrics(); this.getwindowmanager().getdefaultdisplay().getmetrics(displaymetrics); this.adview = new adview(this); this.adview.setadsize(com.google.android.gms.ads.adsize.smart_banner); this.adview.setadunitid("put number"); com.google.android.gms.ads.adrequest adrequest = new com.google.android.gms.ads.adrequest.builder().build(); //you can use test device did in code this.adview.loadad(adrequest); relativelayout layout = (relativelayout)findviewbyid(r.id.relativelayout); relativelayout.layoutparams params = new relativelayout.layoutparams(relativelayout.layoutparams.wrap_content, relativelayout.layoutparams.wrap_content); layout.addview(this.mrendersurfaceview); layout.addview(this.adview, params); }
this example smart banner ads. way show , hide them shown in forum example.
Comments
Post a Comment