0

このページを使用して、オーディオをページ間で再生し続けています。

<Page
    x:Class="MyApp.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:MyApp"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:mmppf="using:Microsoft.PlayerFramework"
    mc:Ignorable="d"
    >

    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <mmppf:MediaPlayer x:Name="player" AutoPlay="True" AudioCategory="BackgroundCapableMedia" />
        <Frame x:Name="rootFrame"/>
    </Grid>
</Page>

これが私のアプリマニフェストの外観です。 ここに画像の説明を入力

しかし、アプリをバックグラウンドにすると、オーディオの再生が停止します。私が見る限り、ここで言及されているものはすべて私のアプリに存在します

(MediaPlayer要素は を処理する必要がありますSystemMediaTransportControls)

4

1 に答える 1