所以,我试图将横幅广告添加到我的Android应用程序中,我使用LibGDX来创建。我按照本教程添加了横幅广告:
现在,我有一个输入监听器,用于在用户单击按钮时检查某个宽度和高度。当我实施广告时,我的x和y坐标被移动了。我想知道是否有办法在屏幕上显示广告,而不是包装内容。
**当我在屏幕顶部说出我的游戏正在运行时,广告在游戏之上运行,而不是移动坐标。 \
谢谢!
答案 0 :(得分:0)
Remove the following from createGameView:
params.addRule(RelativeLayout.BELOW, adView.getId());
Then add the gameView to the layout before the adView, so the ad will be atop the game.