Linphone和Xamarin形式;如何设置远程视图和本地视图



基于 Linphone Windows 10 应用程序实现,我可以通过将属性Linphone.Core.NativeVideoWindowIdNativePreviewVideoWindowId设置为两个Windows.UI.Xaml.Controls.SwapChainPanel控件的相应Name :s 来查看远程和本地视频。

在相应的 Xamarin AndroidiOS 应用中使用 Linphone 时,应使用哪个 UI 控件,以及应使用哪个控件属性来定义这些平台上的NativeVideoWindowIdNativePreviewVideoWindowId

我也有类似的问题。

人造人:

videoView = new GL2JNIView(context);
surfaceView = new SurfaceView(context);

通过自定义渲染器进行分配,例如ViewRenderer<CameraPreview, Droid.Lib.CameraPreview>

苹果:

 var wrapper = (Xamarin.Forms.Platform.iOS.NativeViewWrapper)contentViewVideoParent.Content;
                var videoview = (UIView)wrapper.NativeView;

并将IntPtr videoview.Handle分配给 linphone 视图。

我已经

用你的答案解决了同样的问题,但我认为在这个例子中缺少一些代码(对于下一个人,有同样的问题(,所以我发布了对我有用的代码。

对于 iOS:

<小时 />

AppDelegate.cs (iOS 项目(

public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
    global::Xamarin.Forms.Forms.Init();
    LoadApplication(new App(IntPtr.Zero));
    View view = null;
    UIView iView = new UIView(new RectangleF(0,0,640,480));
    view = iView.ToView();
    ((App)App.Current).ViedoFrame().Content = view;
    NativeViewWrapper wrapper = (NativeViewWrapper)((App)App.Current).ViedoFrame().Content;
    UIView uiView = (UIView)wrapper.NativeView;
    ((App)App.Current).Core.NativePreviewWindowId = uiView.Handle;
    ((App)App.Current).Core.VideoDisplayEnabled = true;
    ((App)App.Current).Core.VideoPreviewEnabled = true;
    
    return base.FinishedLaunching(app, options);
}

应用.cs(共享项目(

public partial class App : Application
{
    ...
    
    public Page MainPageContent;
    
    public App(IntPtr context)
    {
        InitializeComponent();
        MainPageContent = new MainPage();
        MainPage = new NavigationPage(MainPageContent);
    }
    
    public ContentView ViedoFrame()
    {
        return MainPageContent.FindByName<ContentView>("video_frame");
    }
    
    ...
}

MainPage.xaml(共享项目(

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:Kiwi"
             x:Class="Project.Linphone"
             Title="KiwiDoorUni">
             
    <ContentPage.ToolbarItems>
        ...
    </ContentPage.ToolbarItems>
    
    <StackLayout>
        ...
        <ContentView x:Name="video_frame">
        <!-- leave blank, UIView will be inserted here -->
        </ContentView>
    </StackLayout>
</ContentPage>

对于安卓

<小时 />

我在Linphone Xamarin示例项目中使用了BelledonneCommunications的代码,它对我有用

示例项目可在此处找到:

https://github.com/BelledonneCommunications/linphone-xamarin

检查文件:MainActivity.cs(安卓项目(

相关内容

  • 没有找到相关文章

最新更新