gpt4 book ai didi

windows-phone-7 - WP7 Microsoft Advertising AdControl消失并抛出异常

转载 作者:行者123 更新时间:2023-12-03 00:06:57 24 4
gpt4 key购买 nike

我在将 AdControl 实现到我的 Silverlight WP7 应用程序中时遇到问题。昨天我在 PubCenter 注册并设置了一个新的 Windows Phone 7 应用程序。 PubCenter 告诉我它已获得批准,并给了我我的申请 ID。对于本文,我们假设应用程序 ID 为 abc-123。接下来,我创建了一个名为“Developer”的广告单元(我的应用程序面向开发者)。

我选择了两个类别(技术与计算 - 全部,教育 - 研究生院)。我选择“6:1 比例大横幅 (216*36)”作为我的广告单元格式。我不确定广告格式,但保存后无法更改。对于本文,假设广告单元 ID 为 55555

我安装了 Microsoft Advertising SDK,然后将引用 Microsoft.Advertising.Mobile.UI 添加到我的手机项目中。

我将 AdControl 添加到我的 xaml 页面之一:

<UI:AdControl ApplicationId="abc-123" AdUnitId="55555" AdModel="Contextual"></UI:AdControl>

使用命名空间:

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

在页面后面的代码中,我可以控制我已经按照教程的建议设置了测试模式:

using Microsoft.Advertising.Mobile.UI;
...
public MainPage()
{
InitializeComponent();
AdControl.TestMode = true;
}

当我运行应用程序并导航到该页面时,我会看到 AdControl 的灰色边框一会儿,然后 AdControl 就消失了。没有运行时错误或任何可能停止执行的情况。如果我查看输出窗口,我可以看到控件失败:

'taskhost.exe' (Managed): Loaded '\Applications\Install\D9123383-1522-4DCC-A270-AD0E7B642996\Install\Microsoft.Advertising.Mobile.UI.dll' 'taskhost.exe' (Managed): Loaded '\Applications\Install\D9123383-1522-4DCC-A270-AD0E7B642996\Install\Microsoft.Phone.Controls.dll' 'taskhost.exe' (Managed): Loaded 'System.Windows.debug.resources.dll' A first chance exception of type 'System.Net.WebException' occurred in System.Windows.dll A first chance exception of type 'System.Net.WebException' occurred in System.Windows.dll A first chance exception of type 'System.Net.WebException' occurred in Microsoft.Advertising.Mobile.UI.dll

我尝试部署到开发人员设备并将测试模式设置为 false,但结果相同。我什至尝试了我在网上读到的测试参数:

<UI:AdControl ApplicationId="test_client" AdUnitId="Image480_80" AdModel="Contextual"></UI:AdControl>

这也会导致控件消失。

最佳答案

史蒂夫,

我想我看到了这个问题。您在 MainPage 构造函数中设置 AdControl.TestMode = true,这在应用的启动周期中为时已晚。尝试将该行移至 App.xaml.cs 代码隐藏文件的构造函数。 App 类在其他任何事情之前加载,在那里设置模式可确保它足够早地发生。

不能百分百确定这里的基本原理,但我的猜测是需要在呈现控件之前设置TestMode。当 MainPageInitializeComponent 方法完成时,控件树已经完成渲染。

让我们知道进展如何。

关于windows-phone-7 - WP7 Microsoft Advertising AdControl消失并抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5683626/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com