我的应用程序中添加的Adcontrol没有出现在设备中?

时间:2014-06-23 05:10:42

标签: windows-phone-7 windows-phone-8 windows-phone bing

我正在尝试使用Bing Ads测试应用程序。我已经添加了最新版本的Microsoft Advertising SDK,我正在Windows Phone 8 Silverlight应用程序中尝试这个?

这是xaml代码:

   <UI:AdControl ApplicationId="app_id" AdUnitId="adunit_id"
                HorizontalAlignment="Left" Height="80" 
                Margin="0,488,0,200"   Width="480" 
                IsAutoRefreshEnabled="True" Keywords="Hotels, Travels, Restaurant"/>

但广告没有出现在设备中?

提前致谢。

2 个答案:

答案 0 :(得分:0)

您必须忘记添加capabilities

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

ID_CAP_IDENTITY_USER
ID_CAP_MEDIALIB_PHOTO
ID_CAP_NETWORKING
ID_CAP_PHONEDIALER
ID_CAP_WEBBROWSERCOMPONENT

答案 1 :(得分:0)

尝试检查设备中的互联网连接,然后设置Visible属性,启用属性

   <UI:AdControl ApplicationId="app_id" AdUnitId="adunit_id"
                HorizontalAlignment="Left" Height="80" 
                Margin="0,488,0,200"   Width="480" 
                IsAutoRefreshEnabled="True" Visible="visible" IsEnable="True" Keywords="Hotels, Travels, Restaurant"/>