博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Controlling Your App’s Volume and Playback 控制应用程序的音量和播放
阅读量:4046 次
发布时间:2019-05-24

本文共 4657 字,大约阅读时间需要 15 分钟。

A good user experience is a predictable one. If your app plays media it’s important that your users can control the volume of your app using the hardware or software volume controls of their device, bluetooth headset, or headphones.

Similarly, where appropriate and available, the play, stop, pause, skip, and previous media playback keys should perform their respective actions on the audio stream used by your app.

http://blog.csdn.net/sergeycao

Identify Which Audio Stream to Use

The first step to creating a predictable audio experience is understanding which audio stream your app will use.

Android maintains a separate audio stream for playing music, alarms, notifications, the incoming call ringer, system sounds, in-call volume, and DTMF tones. This is done primarily to allow users to control the volume of each stream independently.

Most of these streams are restricted to system events, so unless your app is a replacement alarm clock, you’ll almost certainly be playing your audio using the stream.

Use Hardware Volume Keys to Control Your App’s Audio Volume

By default, pressing the volume controls modify the volume of the active audio stream. If your app isn't currently playing anything, hitting the volume keys adjusts the ringer volume.

If you've got a game or music app, then chances are good that when the user hits the volume keys they want to control the volume of the game or music, even if they’re currently between songs or there’s no music in the current game location.

You may be tempted to try and listen for volume key presses and modify the volume of your audio stream that way. Resist the urge. Android provides the handy method to direct volume key presses to the audio stream you specify.

Having identified the audio stream your application will be using, you should set it as the volume stream target. You should make this call early in your app’s lifecycle—because you only need to call it once during the activity lifecycle, you should typically call it within the onCreate() method (of the or that controls your media). This ensures that whenever your app is visible, the volume controls function as the user expects.

setVolumeControlStream(AudioManager.STREAM_MUSIC);

From this point onwards, pressing the volume keys on the device affect the audio stream you specify (in this case “music”) whenever the target activity or fragment is visible.

Use Hardware Playback Control Keys to Control Your App’s Audio Playback

Media playback buttons such as play, pause, stop, skip, and previous are available on some handsets and many connected or wireless headsets. Whenever a user presses one of these hardware keys, the system broadcasts an intent with the action.

To respond to media button clicks, you need to register a in your manifest that listens for this action broadcast as shown below.

The receiver implementation itself needs to extract which key was pressed to cause the broadcast. The includes this under the key, while the class includes a list KEYCODE_MEDIA_* static constants that represents each of the possible media buttons, such as and .

The following snippet shows how to extract the media button pressed and affects the media playback accordingly.

public class RemoteControlReceiver extends BroadcastReceiver {    @Override    public void onReceive(Context context, Intent intent) {        if (Intent.ACTION_MEDIA_BUTTON.equals(intent.getAction())) {            KeyEvent event = (KeyEvent)intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);            if (KeyEvent.KEYCODE_MEDIA_PLAY == event.getKeyCode()) {                // Handle key press.            }        }    }}

Because multiple applications might want to listen for media button presses, you must also programmatically control when your app should receive media button press events.

The following code can be used within your app to register and de-register your media button event receiver using the . When registered, your broadcast receiver is the exclusive receiver of all media button broadcasts.

AudioManager am = mContext.getSystemService(Context.AUDIO_SERVICE);...// Start listening for button pressesam.registerMediaButtonEventReceiver(RemoteControlReceiver);...// Stop listening for button pressesam.unregisterMediaButtonEventReceiver(RemoteControlReceiver);

Typically, apps should unregister most of their receivers whenever they become inactive or invisible (such as during the callback). However, it’s not that simple for media playback apps—in fact, responding to media playback buttons is most important when your application isn’t visible and therefore can’t be controlled by the on-screen UI.

你可能感兴趣的文章
Oracle常用SQL查询(常见题目)
查看>>
GIT学习(一)_GIT简介
查看>>
GIT学习(二)_使用GIT
查看>>
GIT学习(三)_远程仓库(GITHUB)
查看>>
Linux常用命令
查看>>
常用shell脚本(转)
查看>>
linux基础篇读书笔记
查看>>
linux基础篇读书笔记2_后台执行命令
查看>>
Linux常用命令详解(一)
查看>>
Linux常用命令详解(二)_find命令
查看>>
Linux常用命令详解(三)_权限管理
查看>>
Linux常用命令详解(四)_文件过滤分割、统计、kill
查看>>
Linux常用命令详解(五)_性能检测
查看>>
初入操作系统
查看>>
初入Oracle 编程艺术_基本概念
查看>>
Linux常用命令详解(六)_网络
查看>>
Linux常用命令详解(七)_文件压缩、解压
查看>>
Log4j
查看>>
Oracle触发器用法实例详解
查看>>
MySQL学习(入门)
查看>>