Microsoft pubCenter广告未在我的WP8应用中显示

时间:2014-06-08 22:47:49

标签: c# windows-phone-8 ads

我无法让Microsoft pubCenter广告在我的Windows Phone 8应用中运行。 当我运行我的应用程序时,我只看到空格而不是广告 更改为测试值似乎也不会显示广告 你能帮助我吗?提前致谢

这就是我在pubCenter帐户中看到的内容 a

那是我的XAML和我的应用程序的参考资料 b

2 个答案:

答案 0 :(得分:0)

PubCenter需要几天的时间来填充新应用的广告。要查看广告的外观,请在调试模式下使用默认广告。一旦PubCenter播种了Bing的广告投放系统,您就会开始在App中看到广告。

#if DEBUG
        return new AdControl()
        {
            AdUnitId = "Image480_80",
            ApplicationId = "test_client",
            Height = 80,
            IsAutoCollapseEnabled = autocollapse,
            IsAutoRefreshEnabled = true,
            Width = 480,
        };
#endif

答案 1 :(得分:0)

试试这个应该正常工作

的Xaml:

xmlns:UI="clr-namespace:Microsoft.Advertising.Mobile.UI;assembly=Microsoft.Advertising.Mobile.UI"

<UI:AdControl ApplicationId="test_client" AdUnitId="Image480_80" Height="80" Width="480" VerticalAlignment="Bottom" ErrorOccurred="AdControl_ErrorOccurred"/>

以下ID_CAP功能必须包含在启用广告的应用的清单中。 ID_CAP_IDENTITY_USER

ID_CAP_MEDIALIB_PHOTO

ID_CAP_NETWORKING

ID_CAP_PHONEDIALER

ID_CAP_WEBBROWSERCOMPONENT