Android播放本地语音

都是项目中的一些小工具,写到博客方便以后使用,哈哈

/**
     * 播放语音
     *
     * @param path
     */
    public static void playSound(String path) {
        MediaPlayer player = new MediaPlayer();
        try {
            player.setDataSource(path);
            player.prepare();
            player.start();
        } catch (IOException e) {
            e.printStackTrace();
        }

    }


你可能感兴趣的:(Android播放本地语音)