gpt4 book ai didi

windows-phone-7 - Windows 手机广告不起作用

转载 作者:行者123 更新时间:2023-12-04 00:36:15 25 4
gpt4 key购买 nike

我正在尝试将广告集成到已经成功部署的应用程序中。然而,无论我做什么,我似乎都无法让广告发挥作用。我尝试使用代码版本和拖放 gui 版本。这两个我都不能上类。

这就是我所看到的:当它启动时,它可能会在广告应该出现的地方闪烁一瞬间的白色,但仍然没有添加。它识别出我放置它的位置,当我将它放在按钮上时,该按钮变得不可点击。话虽如此,没有弹出默认的“微软广告”图像。我已经安装了广告 SDK,并且已经成功地能够轻松地在其他项目中展示广告。

什么给?这是一个非常简单的页面,我无法弄清楚出了什么问题。似乎我也不能在任何其他页面上放置广告...我确实有 Microsoft.Advertising.Mobile 和 Microsoft.Advertising。 Mobile.UI 包含在项目中,我的互联网正在运行(我有一个项目同时打开并带有广告并且可以正常工作)

<phone:PhoneApplicationPage 
x:Class="AppName.AdPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
shell:SystemTray.IsVisible="True"
xmlns:my="clr-namespace:Microsoft.Advertising.Mobile.UI;assembly=Microsoft.Advertising.Mobile.UI">

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>

<!--TitlePanel contains the name of the application and page title-->
<StackPanel x:Name="TitlePanel" Margin="12,17,12,28">
<TextBlock x:Name="PageTitle" Text="Thank You!" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}" Width="334" />
</StackPanel>

<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0" Height="569" VerticalAlignment="Top">

<Button Content="Ok" Height="72" HorizontalAlignment="Center" Margin="0,428,0,0" Name="button1" VerticalAlignment="Top" Width="160" Click="button1_Click" />
<my:AdControl AdUnitId="Image480_80" ApplicationId="test_client" Height="80" HorizontalAlignment="Left" Margin="-12,458,0,0" Name="adControl1" VerticalAlignment="Top" Width="480" />
</Grid>
</Grid>
</phone:PhoneApplicationPage>

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using Microsoft.Advertising.Mobile.UI;
using Microsoft.Advertising.Mobile;
namespace Stickey_Note_v._1
{
public partial class AdPage : PhoneApplicationPage
{
public AdPage()
{
InitializeComponent();
}

private void button1_Click(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/MainPage.xaml", UriKind.Relative));
}
}
}

最佳答案

我遇到了同样的问题并写了一个 blog post关于它。这是重要的东西:

SDK 问题的症状 AdControl似乎非常一致:页面加载,控件短暂闪烁,显示 1 像素帧的提示,然后,噗。它坍塌为虚无,只留下一个绝望的黑洞。

理论上,设置AdControl很简单。 documentation from Microsoft概述了基础知识:

  • 下载并安装 Microsoft Advertising SDK .
  • 添加对 Microsoft.Advertising.Mobile.UI 的引用.
  • 将控件拖到 Visual Studio 设计器中的页面上。
  • 设置 AdUnitIdApplicationId可以从 Microsoft pubCenter 获取测试值或实际实时值的属性。

  • 但这不可能那么容易。我仔细地遵循了文档,但没有任何效果。我什至无法显示测试广告,这看起来很奇怪。我什至恢复到我的应用程序的旧版本(是的源代码管理!)并放入新的 .dll。失败。

    最后,我在 obscure forum post 中找到了线索。 .

    Microsoft 文档忽略了几个重要细节。如果您像我一样将现有项目升级到 Mango 广告 SDK,则需要特别注意以下几点:
  • 您必须为 AdControl 指定高度和宽度。 .未能指定 HeightWidth属性,或将它们设置为 auto ,会让人泪流满面。我建议使用 80 像素高和 480 像素宽,因为这是 Microsoft 提供的广告的原始尺寸。
  • 好像不能有两个AdControls在同一页面上,或者至少不在同一个父元素中。第二个会崩溃。可能有办法解决这个问题,但我在构建我的演示应用程序时发现了它,并且不在乎寻求解决方案。
  • 您必须必须在 WMAppManifest.xml 中指定某些功能。文件。由于我正在升级我的应用程序,因此我没有声明一些较新的功能。引起所有麻烦的是ID_CAP_IDENTITY_USER .控件正常运行需要以下功能:

  • <Capabilities>
    <Capability Name="ID_CAP_IDENTITY_USER"/>
    <Capability Name="ID_CAP_MEDIALIB"/>
    <Capability Name="ID_CAP_NETWORKING"/>
    <Capability Name="ID_CAP_PHONEDIALER"/>
    <Capability Name="ID_CAP_WEBBROWSERCOMPONENT"/>
    </Capabilities>


    希望有帮助!

    关于windows-phone-7 - Windows 手机广告不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9746612/

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