我一直试图通过谷歌现在使用谷歌搜索我的应用程序的主要活动...任何人都可以帮助我的代码
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:label="My Voice Activated App" >
</searchable>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.authorwjf.myvoiceactivatedapp" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.authorwjf.myvoiceactivatedapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我用这个命令编写了这段代码来搜索我的应用程序 - “Okay Google ..... Open My Voice Activated App”但这不起作用
答案 0 :(得分:0)
将您的应用名称存储在@string/app_name
中。您的应用会反映在搜索结果中(手机)