Agora-RTC-SDK-for-Xamarin icon indicating copy to clipboard operation
Agora-RTC-SDK-for-Xamarin copied to clipboard

local video overlapped by remotevideo in android only - Xamarin forms

Open jaisont07 opened this issue 3 years ago • 0 comments

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>

jaisont07 avatar Apr 26 '21 06:04 jaisont07