local video overlapped by remotevideo in android only - Xamarin forms
jaisont07 opened this issue · 0 comments
jaisont07 commented
Hi , The local video which I placed on top of the remotevideo in my grid is getting overlapped by the remotevideo in android. I am using it in a xamarin forms application. It is rendered as intended in iOS. This issue is with the android version only.
Is there any workaround for it.
<Grid Grid.ColumnSpan="2" Grid.Row="0" x:Name="AgoraGrid">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height=".35*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<control:AgoraVideoView x:Name="RemoteView"
BackgroundColor="Aqua"
Grid.ColumnSpan="3"
IsStatic="true" Grid.Row="0" Grid.RowSpan="2"
StreamUID="1"
Mode="Hidden"/>
<control:AgoraVideoView x:Name="LocalView"
Grid.Row="1" Grid.Column="2"
BackgroundColor="Black"
StreamUID="{Binding MyStreamId}"
IsStatic="True"/>
</Grid>