我正在做一個非常簡單的android應用程序,用語音命令打開。我試着用start {label}和一個叫做出租車的動作,但沒有用,我錯過了一些東西。語音命令不適用於安卓設備
我在我的穿戴清單上添加了這個(這是否正確?),並且我部署在穿着和手機上。
清單代碼:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.karumi.kittwear" >
<uses-feature android:name="android.hardware.type.watch" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault" >
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<activity
android:name="WearMainActivity"
android:label="kit" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".StartSearchMyCar">
<intent-filter>
<action android:name="com.google.android.gms.actions.RESERVE_TAXI_RESERVATION" />
</intent-filter>
</activity>
</application>
</manifest>
我也有類似的問題http://stackoverflow.com/questions/25928594/voice-capabilities-in-android-wear – 2014-10-10 06:56:01
知道它的工作,問題,我有它的文檔它是壞的西班牙語,語音命令是:'abrir'用於啓動命令。和西班牙語上不存在出租車預訂:S – flipper83 2014-10-10 09:09:07