- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我想看看如何在我的应用程序上播放 iOS 内置声音的 c# (Xamarin.iOS) 示例。首先,有人知道苹果是否允许(版权问题)吗?如果是这样,我如何在 Xamarin 中完成它?
我在 native iOS 中看到以下示例: https://github.com/TUNER88/iOSSystemSoundsLibrary
#import <AudioToolbox/AudioToolbox.h>
AudioServicesPlaySystemSound (1003); // SMSReceived (see SystemSoundID below)
最佳答案
要播放预定义的声音,您首先需要声音 ID。可以找到列表here .
然后就和native代码差不多了:
using AudioToolbox;
var sound = new SystemSound(1100);
sound.PlaySystemSound();
请注意,这仅适用于物理设备,不适用于 iOS 模拟器。
关于c# - 如何在 Xamarin.iOS 中播放 iOS SystemSound SoundID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39025809/
我正在使用 soundmanager 的 bar-ui js。 Play /
我有一个 UILocalNotification,但我不想将其设置为使用默认铃声。我使用了AudioToolbox.framework,通过引用这个库我有一个SystemSoundID:https:/
我有一个 UILocalNotification,我不想将它设置为使用默认提示音。我使用了 AudioToolbox.framework,并且通过引用此库获得了 SystemSoundID:https
我想看看如何在我的应用程序上播放 iOS 内置声音的 c# (Xamarin.iOS) 示例。首先,有人知道苹果是否允许(版权问题)吗?如果是这样,我如何在 Xamarin 中完成它? 我在 nati
我是一名优秀的程序员,十分优秀!