Android 中的 Admob 方向支持
我是 Android 平台的新手,目前正在考虑将 Admob 集成到我的应用程序中。我对此有两个问题:
我已成功将 Admob 测试广告集成到我的应用中,但不知道如何在其中获取真正的广告。尽管设置了testing="false",它仍然只向我显示测试广告。
它不支持横向模式下的方向。我在一篇文章中读到 Admob 不支持定向,但该文章已经很旧了。我想知道现在是否支持。
I'm new to Android platform and currently considering Admob integration into my application. I have two questions regarding this:
I've managed to integrate Admob test ads into my app but don't know how to get real ads in it. Despite setting testing="false", it's still showing me the test ads only.
It's not supporting orientation in landscape mode. I read in a post that Admob doesn't support orientation but the post was quite old. I want to know whether it's supported now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关于您的第一个问题,您必须在 AdMob 网站上注册才能获取客户端 ID。然后在您的应用程序中使用此客户端 ID。这样您就可以获得真正的广告。
About your first question, you have to register on AdMob web site to get a client id. Then use this client id in your app. This way you will get the real ads.
首先,您必须在 Admob 网站上注册 google 帐户,如果成功完全注册,请按照以下步骤操作。
点击货币化-> +通过新应用获利 ->选择一个应用程序 ->选择广告格式并命名广告单元 ->查看设置说明。
完成这些步骤后获得广告单元 ID:ca-app-pub-555555545345/43545345(像这样并复制它)
并放入您的 xml 文件中。
并且不要在 java 代码中使用 test id 语句。
这是在您的应用程序中获取真实广告的方法。
Firstly you must to have register on Admob web site to google account, if success full signup follow these steps.
Click on Monetize-> +Monetize new app -> select an app -> select ad format and name ad unit -> View setup instruction.
after completed these steps to got a Ad unit ID: ca-app-pub-555555545345/43545345(like this and copy it)
and put on in you xml file.
and don't use test id statement in your java code.
This is way to get real ads in your app.