Monodroid相当于在Android中可搜索

时间:2012-05-25 08:45:24

标签: c# android-manifest xamarin.android

我在Monodroid中搜索相当于Androids searchable,因为monodroid会自动生成应用程序xml清单。有没有办法拥有自己的应用程序xml并对monodroid编译器说这个xml应该绑定到编译中?

1 个答案:

答案 0 :(得分:1)

将这些行添加到Search-Activity,它会生成正确的清单:

[IntentFilter (new[]{Intent.ActionSearch})]
[MetaData ("android.app.searchable", Resource="@xml/searchable")]

这就是全部。

有关详细信息,请查看http://docs.xamarin.com/android/advanced_topics/working_with_androidmanifest.xml