【发布时间】:2018-12-14 22:11:21
【问题描述】:
当我点击文本框时。 底部位置变化。
测试设备: 三星笔记 10.1 安卓 4.1.2 统一 5.6.5p4
请观看视频。 https://www.youtube.com/watch?v=z9r64f5_66s
谢谢
【问题讨论】:
当我点击文本框时。 底部位置变化。
测试设备: 三星笔记 10.1 安卓 4.1.2 统一 5.6.5p4
请观看视频。 https://www.youtube.com/watch?v=z9r64f5_66s
谢谢
【问题讨论】:
为了更好地控制 BannerView 的位置 放置在屏幕上而不是 AdPosition 值提供的内容,请使用 以 x 和 y 坐标为参数的 BannerView 构造函数:
// 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.
【讨论】: