0
WebビューでBinding URLを開くと、ビデオはエミュレータと携帯電話のビジュアルではなくオーディオのみを再生します。 私のPCと電話でBinding URLを開くとうまくいきます。xamlのWebViewビデオが正しく再生されない
どのように修正するのですか?
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="WiscOnline.Mobile.ViewLearningItem"
Title="{Binding LearningItem.Name}">
<WebView x:Name="webView"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
Source="{Binding CurrentSource}" />
<StackLayout>
<Label Text="{Binding LearningItem.ViewUrl}" FontSize="19"></Label>
</StackLayout>
<WebView Source="{Binding LearningItem.ViewUrl}" ></WebView>
</ContentPage>
私はこれが私の携帯電話のデフォルトブラウザで、Chromeのように機能しないと思います。私はbindedurlをYouTubeのビデオに変更すると同じ問題が発生するためです。 – CsharpBeginner
これをマニフェストに追加することで問題を解決できました –
CsharpBeginner