我想添加leadbolt广告控件,就像这里 的leadbolt集成指南
首先,我下载了适用于 Windows Phone 8.1 的 Leadbolt SDK。然后我创建了新的 Windows Phone 应用程序。MainPage.xaml 中有一段代码:
<Page
x:Class="App6.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App6"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid Name="adWrapperGrid" >
<!-- wrap your content with grid -->
<Grid Name="yourContentGrid" Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
</Grid>
</Grid>
和 MainPage.xaml.cs
using LeadBolt.Windows8.AppAd;
namespace App6 { public 密封部分类 MainPage : Page { private AdController myController; 公共 MainPage() { this.InitializeComponent();
this.NavigationCacheMode = NavigationCacheMode.Required;
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
adWrapperGrid.Loaded += adWrapperGrid_Loaded;
}
void adWrapperGrid_Loaded(object sender, RoutedEventArgs e)
{
myController = new AdController(adWrapperGrid, "YOUR_LB_SECTION_ID");
myController.LoadAd();
}
protected override void OnNavigatedFrom(NavigationEventArgs e)
{
myController.DestroyAd();
adWrapperGrid.Loaded -= adWrapperGrid_Loaded;
base.OnNavigatedFrom(e);
}
}
}
所以,我所做的一切就像在链接中一样,但是当我启动该应用程序时,它会显示一个空白屏幕,没有广告。
有人可以帮忙吗?或者推荐其他支持 Windows Phone 8.1 应用程序的广告提供商,它现在是一个填充率接近 0% 的 pubCenter?