磨损:使用自定义语音启动命令打开我的应用程序,不起作用

时间:2015-01-06 13:10:31

标签: android wear-os voice

您好我正在关注Google documentation使用“启动”命令打开虚拟应用程序,但对我不起作用。

我使用带有移动和磨损模块的Android Studio向导创建了一个新的默认项目。

我没有碰到任何东西,只有'模块'的磨损模块清单显示为“Hola”(西班牙语问好),当我说“Iniciar Hola”(“开始你好”)时使用“谷歌搜索” hola“keyword。

未启动磨损模块或移动模块。

我缺少的东西:'(从Google文档中看起来很简单......

PS:我正在测试佩戴设备上的BT

移动清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.basetis.wearapp" >

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

移动活动

public class MainActivity extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

佩戴清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.basetis.wearapp" >

    <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" >
        <activity
            android:name=".WearActivity"
            android:label="Hola" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

</manifest>

磨损活动

public class WearActivity extends Activity {

    private TextView mTextView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_wear);
        final WatchViewStub stub = (WatchViewStub) findViewById(R.id.watch_view_stub);
        stub.setOnLayoutInflatedListener(new WatchViewStub.OnLayoutInflatedListener() {
            @Override
            public void onLayoutInflated(WatchViewStub stub) {
                mTextView = (TextView) stub.findViewById(R.id.text);
            }
        });
    }
}

2 个答案:

答案 0 :(得分:1)

好的...开始申请的西班牙语单词是&#34; Abrir&#34;不是&#34; Iniciar&#34;,但在佩戴UI时,打开应用程序的菜单条目是&#34; Iniciar&#34;所以掌握Google用户体验团队的掌声:&#39;(

答案 1 :(得分:0)

看起来语音命令用于在手机上启动应用,而不是启动磨损应用。

我可以说&#34;启动计算器&#34;它会在我的手机上打开计算器应用程序。

您可以做的是在手机上启动活动,然后该活动启动您想要的磨损应用。