如何使用 Xamarin.iOS 将广告内容分配给 stacklayout
Posted
技术标签:
【中文标题】如何使用 Xamarin.iOS 将广告内容分配给 stacklayout【英文标题】:How to assign ad content to stacklayout using Xamarin.iOS 【发布时间】:2021-06-24 17:30:33 【问题描述】:我想将横幅内容分配到 stacklayout。在我的 MainPage.xaml 中,我使用 x:Name="Advertising" 创建了一个新的堆栈布局。
<StackLayout x:Name="Advertising">
</StackLayout>
现在我想将横幅中的内容直接移动到 stacklayout 中。我的 MainPage.xaml.cs 中的 c# 代码是:
AdmobControl admobControl = new AdmobControl()
AdUnitId = AppConstants.BannerId
;
Content = new StackLayout()
Children = admobControl
;
如何使用 x:Name="Advertising" 将内容 Children = admobControl
移动到我的新堆栈布局中?
【问题讨论】:
【参考方案1】:将其添加到现有的StackLayout
Advertising.Children.Add(admobControl);
【讨论】:
以上是关于如何使用 Xamarin.iOS 将广告内容分配给 stacklayout的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 AutoLayout (iOS/Xamarin.iOS) 使 ScrollView 适合其内容?
如何使用 Xamarin iOS PickView 获取价值?
如何使用AutoLayout(iOS / Xamarin.iOS)使ScrollView适合其内容?