Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个教育软件。将有一个可用的字母网格视图。我希望它播放一个音频剪辑,当有人点击它时会显示字母表。你能告诉我怎么做吗
将您的声音文件放在资产文件夹中。使用 AssetManager 类检索声音文件。当您听到播放计数的点击时,创建 MediaPlayer 的实例并播放文件。
其中每一个都需要深入研究如何使用每个类。
sound = MediaPlayer.create(Splash.this, R.raw.splashsound); 声音.start();