我正在尝试实施Google的新功能,使用特定应用进行搜索。我想以这种格式向谷歌询问一些东西"在myApp"上搜索...但它不起作用。
这是Google建议在AndroidManifest中添加的唯一代码:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SearchActivity"
android:label="@string/title_activity_search"
android:parentActivityName=".MainActivity" >
<intent-filter>
<action android:name="com.google.android.gms.actions.SEARCH_ACTION"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
StartActivity:
import com.google.android.gms.actions.SearchIntents;
public class SearchActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_search);
if (savedInstanceState == null) {
getFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
Intent i = getIntent();
if (SearchIntents.ACTION_SEARCH.equals(i.getAction())) {
String query = i.getStringExtra(SearchManager.QUERY);
Toast.makeText(this, query, Toast.LENGTH_SHORT).show();
}
}
我的应用尚未签名!可能是这个问题吗?
答案 0 :(得分:0)
在不知道其余代码的情况下,我建议您阅读Creating a Search Interface.
乍一看,您似乎错过了
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
在你的IntentFilter之后。
ETA:我不认为onCreate中的Toast节目会给你任何信息。搜索必须在onCreate方法之后进行。断点通过你的onCreate,看看&#34; i&#34; (你的意图)是。