gpt4 book ai didi

android - 新的 Xamarin Forms 4.6 MediaElement 不适用于 Android

转载 作者:行者123 更新时间:2023-12-03 21:56:09 25 4
gpt4 key购买 nike

我在一个非常简单的 Xamarin Forms Shell 项目中试用了新的 Xamarin Forms 4.6.0.726 MediaElement 控件。
我在 ContentPage 中添加了 MediaElement 控件并设置了它的属性(AutoPlay 为 true,IsLooping 为 true,Source 为 mp4 文件,ShowPlaybackControls 为 true)。
我还在 App.xaml.cs 中为 MediaElement 添加了 Experimental-Flag。

当我运行应用程序时,视频在 iOS 上播放,声音、图像和播放器控件可见,但在 Android 上不起作用。
在 Android 上,播放器控件不显示,没有任何 react 。

还有其他人有这个问题吗?

最佳答案

您可以尝试检查这些,确保您已在平台项目中存储了媒体文件。

在 Android 上,媒体文件必须存储在 的子文件夹中资源 命名为 生的 . 生的 文件夹不能包含子文件夹。媒体文件必须有 Build ActionAndroidResource .

enter image description here

然后在您的 page.xaml 中(不要使用布局来包装 MediaElement ):

<?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="MediaElementDemos.PlayAppPackageVideoResourcePage"
Title="Play app package video resource">
<MediaElement Source="ms-appx:///XamarinForms101UsingEmbeddedImages.mp4"
ShowsPlaybackControls="True" IsLooping="True" AutoPlay="True" />
</ContentPage>

添加 Device.SetFlags(new string[] { "MediaElement_Experimental" });在您的 应用程序.xaml.cs
public App()
{
Device.SetFlags(new string[] { "MediaElement_Experimental" });
InitializeComponent();
MainPage = new NavigationPage(new PlayPage());
}

更新 :

如果您想从 URL 播放 mp4。
<?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="MediaElementDemos.PlayAppPackageVideoResourcePage"
Title="Play app package video resource">
<MediaElement Source="https://sec.ch9.ms/ch9/5d93/a1eab4bf-3288-4faf-81c4-294402a85d93/XamarinShow_mid.mp4"
ShowsPlaybackControls="True" IsLooping="True" AutoPlay="True" />
</ContentPage>

关于android - 新的 Xamarin Forms 4.6 MediaElement 不适用于 Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61727692/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com