【问题标题】:Android Audio controlsAndroid 音频控件
【发布时间】:2011-12-17 21:54:24
【问题描述】:

有谁知道 Android 上的类和意图是什么,所以如果我想流式传输音频文件,整个控制面板都会出现。播放暂停音量等。

【问题讨论】:

标签: android audio


【解决方案1】:

这应该给它:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
Uri data = Uri.parse("http://..."); // or file:///...
intent.setDataAndType(data, "audio/mp3");
startActivity(intent);

【讨论】:

  • 谢谢,应用内有什么东西吗?以便它内置到应用程序中。
【解决方案2】:

我实现了 MediaPlayer 和 MediaController

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2011-12-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多