Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 178 Bytes

播放音频.md

File metadata and controls

11 lines (9 loc) · 178 Bytes

播放音频

private void runHintVoice() {
    MediaPlayer mediaPlayer;
    mediaPlayer = MediaPlayer.create(this,R.raw.finish);
    mediaPlayer.start();
}