当我单击文本框时。 底部位置改变。
经过测试的设备: 三星笔记10.1 Android 4.1.2 Unity 5.6.5p4
请查看视频。 https://www.youtube.com/watch?v=z9r64f5_66s
谢谢
答案 0 :(得分:0)
更好地控制BannerView的位置 放置在屏幕上,而不是AdPosition值提供的内容,请使用 以x和y坐标为参数的BannerViewconstructor:
// Create a 320x50 banner ad at coordinate (0,50) on screen.
BannerView bannerView = new BannerView(adUnitId, AdSize.Banner, 0, 50);
The top-left corner of the BannerView will be positioned at the x and y values passed to the constructor, where the origin is the top-left of the screen.