James Crutchley
James Crutchley
I am happy to start working on this. We will need to create a sample to demonstrate how this works and also update the docs when we do the pull...
@jonmdev have you joined the community discord? BTW I have a sample with texture viewer working and I am in the process of testing various stuff with it. I will...
How does this look for an API ```csharp /// /// Backing store for the property. /// public static readonly BindableProperty AndroidSurfaceProperty = BindableProperty.Create(nameof(AndroidSurface), typeof(AndroidSurfaceType), typeof(MediaElement), AndroidSurfaceType.SurfaceView); /// /// Backing store...
I'm mostly basing what I am doing based on your specifications. I have no real idea what you intended so every detail helps.
Sample of transparency and colors: Setting PlayerView color and transparency affects the controls. Setting Foreground color and transparency affects the video image. ```csharp PlayerView.SetBackgroundColor(Android.Graphics.Color.Transparent); PlayerView.Foreground = new Android.Graphics.Drawables.ColorDrawable(Android.Graphics.Color.White); PlayerView.Foreground.Alpha =...
Setting foreground color sets the image color property that sits on the foreground. Setting foreground alpha sets the transparency of color on top of image. Setting background color sets video...
@jonmdev Yes it would be nice to have a surface type for audio. I would not recommend using none. Using audio if we use any controls it would default to...