gpt4 book ai didi

c# - 将 Android View 作为自定义控件集成到 Xamarin.Forms 中

转载 作者:行者123 更新时间:2023-11-29 21:01:27 25 4
gpt4 key购买 nike

我在我的项目中使用 Xamarin Forms。

基本上我想整合一个custom control以我的形式。该组件提供了一个 Android View (axml),但我找不到将其包含到我共享的 Xamarin Forms 项目中的方法。

我尝试创建一个自定义渲染器:

[assembly: ExportRenderer(typeof(RadialControl), typeof(RadialControlRenderer))]
namespace EA.Indemnisation.Renderers
{
public class RadialControlRenderer : ViewRenderer
{
protected override void OnDraw(Android.Graphics.Canvas canvas)
{
base.OnDraw(canvas);

SetContentView(Resource.Layout.Radial); // How can I include my view as component into the form?

var bigRadialProgress = FindViewById<RadialProgressView>(Resource.Id.bigProgress);
var smallRadialProgress = FindViewById<RadialProgressView>(Resource.Id.smallProgress);
var tinyRadialProgress = FindViewById<RadialProgressView>(Resource.Id.tinyProgress);
}
}
}

这对我没有帮助,因为我无法获取 Android View 、与其交互并将其包含在我的表单中。

我还查看了如何将 Android.Views.View 转换为 Xamarin.Forms.View,但我找不到这样做的方法。

将自定义控件集成到 Xamarin Forms 应用程序中的方法是什么?

最佳答案

您的起点是正确的。重写 OnElementChanged,因为你应该在那里创建你的 Android View 。

类似于:

protected overrie void OnElementChanged(ElementChangedEventArgs<RadialControl> e)
{
if (Control == null) {
YourView yourView = new YourView(base.Context);
SetNativeControl(yourView );
}
// update and/or bind properties & events
....
}

此外,为了捕获 RadialControl 的属性更改,您将覆盖 OnElementPropertyChanged;

关于c# - 将 Android View 作为自定义控件集成到 Xamarin.Forms 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25992344/

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