- 授权协议: Apache
- 开发语言: Java
- 操作系统: Android
- 软件首页: https://github.com/Quinny898/PersistentSearch
软件介绍
PersistentSearch 可以在 APP 上实现固定的搜索栏,例如 Google Now,Google Maps 和 Google Play。
示例代码:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (isAdded() && requestCode == SearchBox.VOICE_RECOGNITION_CODE &&
resultCode == getActivity().RESULT_OK) {
ArrayList<String> matches = data
.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
search.populateEditText(matches);
}
super.onActivityResult(requestCode, resultCode, data);
}Algorithms of the Intelligent Web
Haralambos Marmanis、Dmitry Babenko / Manning Publications / 2009-7-8 / GBP 28.99
Web 2.0 applications provide a rich user experience, but the parts you can't see are just as important-and impressive. They use powerful techniques to process information intelligently and offer featu......一起来看看 《Algorithms of the Intelligent Web》 这本书的介绍吧!
