在android中调用时的背景声音

时间:2014-06-26 14:30:43

标签: android

当我打电话给某人时,我想自动播放声音 但我不知道如何做到这一点。

这是可能的,因为我们有一些应用程序对呼叫的背景发挥一些噪音(交通和...),但我找不到代码或其他东西 example of sound play in background

这是播放音乐的代码

MediaPlayer player;
AssetFileDescriptor afd;
try {
    // Read the music file from the asset folder
    afd = getAssets().openFd(“home.mp3″);
    // Creation of new media player;
    player = new MediaPlayer();
    // Set the player music source.
    player.setDataSource(afd.getFileDescriptor(), afd.getStartOffset(),afd.getLength());
    // Set the looping and play the music.
    player.setLooping(true);
    player.prepare();
    player.start();
} catch (IOException e) {
    e.printStackTrace();
}

但是我们可以在通话期间使用它吗?

0 个答案:

没有答案