借助Google Play服务4.1,Google移动广告SDK现已全面展开 支持DFP广告管理系统,DoubleClick Ad Exchange和 搜索移动应用广告。您还可以使用新提供的发布者 location API,用于在请求广告时向Google提供位置信息。 基于位置的广告可以改善您的应用获利。
如何获得发布商提供的位置?如何将已审核的位置设置为com.google.android.gms.ads.AdRequest
?
答案 0 :(得分:3)
据我了解,您可以使用标准Android方法(https://developer.android.com/google/play-services/location.html)接收用户的位置,并使用此方法在AdRequest中设置位置: https://developer.android.com/reference/com/google/android/gms/ads/AdRequest.Builder.html#setLocation(android.location.Location)
这个问题也许有帮助: How to supply location with an AdRequest now that AdMob has become part of the Google Play Services?
答案 1 :(得分:1)
AdRequest request = new AdRequest.Builder()
.setLocation(Location l)
.build();
这适合我。