在Notifcation中接收语音输入
最后更新于:2022-04-01 01:41:27
> 编写:[wangyachen](https://github.com/wangyacheng) - 原文:[http://developer.android.com/training/wearables/notifications/voice-input.html](http://developer.android.com/training/wearables/notifications/voice-input.html)
如果手持式设备上的Notification包含了一个输入文本的action,比如回复邮件,那么这个action正常情况下应该会调起一个[activity](# "An activity represents a single screen with a user interface.")让用户进行输入。但是,当这个action出现在可穿戴式设备上时,是没有键盘可以让用户进行输入的,所以开发者应该让用户指定一个反馈或者通过[RemoteInput](http://developer.android.com/reference/android/support/v4/app/RemoteInput.html)预先设定好文本信息。
当用户通过语音或者选择可见的消息进行回复时,系统会将文本的反馈信息与开发者指定的Notification中的action中的[Intent](http://developer.android.com/reference/android/content/Intent.html)进行绑定,并且将该intent发送给手持设备中的app。
> **Note:**Android模拟器并不支持语音输入。如果使用可穿戴式设备的模拟器的话,可以打开AVD设置中的**Hardware keyboard present**,实现用打字代替语音。
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2015-07-28_55b72472653d5.png)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2015-07-28_55b7247279ca7.png)
### 定义语音输入
为了创建一个支持语音输入的action,需要创建一个[RemoteInput.Builder](http://developer.android.com/reference/android/support/v4/app/RemoteInput.Builder.html)的实例,将其加到Notification的action中。这个类的构造函数接受一个String类型的参数,系统用这个参数作为语音输入的key,后面我们会用这个key来取得在手持设备中输入的文本。
举个例子,下面展示了如何创建一个[RemoteInput](http://developer.android.com/reference/android/support/v4/app/RemoteInput.html)对象,其中,该提供了一个用于提示语音输入的自定义label。
~~~
// Key for the string that's delivered in the action's intent
private static final String EXTRA_VOICE_REPLY = "extra_voice_reply";
String replyLabel = getResources().getString(R.string.reply_label);
RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
.setLabel(replyLabel)
.build();
~~~
### 添加预先设定的文本反馈
除了要打开语音输入支持之外,开发者还可以提供多达5条的文本反馈,这样用户可以直接选择实现快速回复。该功能可通过调用[setChoices()](http://developer.android.com/reference/android/support/v4/app/RemoteInput.Builder.html#setChoices(java.lang.CharSequence[]))并传递一个String数组实现。
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2015-07-28_55b72472865b4.png)
举个例子,可以用resource数组的方式定义这些反馈:
`res/values/strings.xml`
~~~
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="reply_choices">
<item>Yes</item>
<item>No</item>
<item>Maybe</item>
</string-array>
</resources>
~~~
然后,填充 String 数组,并将其添加到[RemoteInput](http://developer.android.com/reference/android/support/v4/app/RemoteInput.html)中:
~~~
public static final EXTRA_VOICE_REPLY = "extra_voice_reply";
...
String replyLabel = getResources().getString(R.string.reply_label);
String[] replyChoices = getResources().getStringArray(R.array.reply_choices);
RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
.setLabel(replyLabel)
.setChoices(replyChoices)
.build();
~~~
### 添加语音输入作为Notification的action
为了实现设置语音输入,可以把[RemoteInput](http://developer.android.com/reference/android/support/v4/app/RemoteInput.html)对象通过[addRemoteInput()](http://developer.android.com/reference/android/support/v4/app/NotificationCompat.Action.Builder.html#addRemoteInput(android.support.v4.app.RemoteInput))设置到一个action中。然后我们可以将这个action应用到Notification中,例如:
~~~
// Create an intent for the reply action
Intent replyIntent = new Intent(this, ReplyActivity.class);
PendingIntent replyPendingIntent =
PendingIntent.getActivity(this, 0, replyIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
// Create the reply action and add the remote input
NotificationCompat.Action action =
new NotificationCompat.Action.Builder(R.drawable.ic_reply_icon,
getString(R.string.label, replyPendingIntent))
.addRemoteInput(remoteInput)
.build();
// Build the notification and add the action via WearableExtender
Notification notification =
new NotificationCompat.Builder(mContext)
.setSmallIcon(R.drawable.ic_message)
.setContentTitle(getString(R.string.title))
.setContentText(getString(R.string.content))
.extend(new WearableExtender().addAction(action))
.build();
// Issue the notification
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(mContext);
notificationManager.notify(notificationId, notification);
~~~
当程序发出这个Notification的时候,用户在可穿戴设备上左滑便可以看到reply的按钮。
### 将语音输入转化为String
通过调用[getResultsFromIntent()](http://developer.android.com/reference/android/support/v4/app/RemoteInput.html#getResultsFromIntent(android.content.Intent))方法,将返回值放在"Reply"的action指定的intent中,开发者便可以在回复的action的intent中指定的[activity](# "An activity represents a single screen with a user interface.")里,接收到用户转录后的消息。该方法返回的是包含了文本反馈的[Bundle](http://developer.android.com/reference/android/os/Bundle.html)。我们可以通过查询[Bundle](http://developer.android.com/reference/android/os/Bundle.html)中的内容来获得这条反馈。
> **Note:**请不要使用[Intent.getExtras()](http://developer.android.com/reference/android/content/Intent.html#getExtras())来获取语音输入的结果,因为语音输入的内容是存储在[ClipData](http://developer.android.com/reference/android/content/ClipData.html)中的。[getResultsFromIntent()](http://developer.android.com/reference/android/support/v4/app/RemoteInput.html#getResultsFromIntent(android.content.Intent))提供了一条很方便的途径来接收字符数组类型的语音信息,并且不需要经过[ClipData](http://developer.android.com/reference/android/content/ClipData.html)自身的调用。
下面的代码展示了一个接收intent,并且返回语音反馈信息的方法,该方法是依据之前例子中的`EXTRA_VOICE_REPLY`作为key进行检索:
~~~
/**
* Obtain the intent that started this activity by calling
* Activity.getIntent() and pass it into this method to
* get the associated voice input string.
*/
private CharSequence getMessageText(Intent intent) {
Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
if (remoteInput != null) {
return remoteInput.getCharSequence(EXTRA_VOICE_REPLY);
}
}
return null;
}
~~~
下一课:[为Notification添加页面](#)