我想在我的Android应用中添加一个searchview,但我无法理解文档。我添加了
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:includeInGlobalSearch="true"
android:searchSuggestAuthority="dictionary"
android:searchSuggestIntentAction="android.intent.action.VIEW">
</searchable>
到我的xml和<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" /
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
到我的清单。但是provider
- 标签应该放在哪里?运行应用程序时,我收到一个错误膨胀类异常。
有人知道一个很好的教程吗?谢谢!
答案 0 :(得分:8)
这个答案很晚,但正如我所看到的,其他答案只是 answer-links 。然后,我将尝试用简短的示例代码提供一些解释
在Documentation中描述了添加SearchView
,并且很容易按照这些步骤进行操作。我们可以阅读Create a Search Interface主题:
<intent-filter>
不需要<category>
DEFAULT 值(您通常会在<activity>
元素中看到),因为系统会提供 ACTION_SEARCH 使用其组件名称明确指向您的可搜索活动。
然后,您的清单变为:
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/my_searchable_layout"/>
“传统上,您的搜索结果应该在ListView中显示,因此您可能希望您的可搜索活动扩展ListActivity” - 仍然来自Docs。所以您的SearchActivity
可能是:
public class SearchActivity extends ListActivity { }
“当用户从搜索对话框或搜索小部件执行搜索时,系统会创建一个Intent并将用户查询存储在其中。然后系统启动您声明要处理搜索的活动( “可搜索的活动”)并将其意图“。您需要使用Intent
方法中的onCreate
从搜索对话框或窗口小部件中获取查询搜索:
// Get the intent, verify the action and get the query
Intent intent = getIntent();
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
// Receive the query
String query = intent.getStringExtra(SearchManager.QUERY);
// Search method..
doMySearch(query);
}
doMySearch()
可以是AsyncTask
,新Thread
..连接到SQLite DataBase
,SharedPreference
,无论是什么.. “The存储和搜索数据的过程对于您的应用程序而言是唯一的“。话虽如此,您应该创建Adapter
以在列表中提供结果。
以下是使用asynctask填充列表的ListActivity
的简短SearchActivity
示例:
public class SearchActivity extends ListActivity {
// Create an array
String[] values;
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.list_activity_layout);
Intent intent = getIntent();
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String query = intent.getStringExtra(SearchManager.QUERY);
// At the end of doMySearch(), you can populate
// a String Array as resultStringArray[] and set the Adapter
doMySearch(query);
}
}
class doMySearch extends AsyncTask<String,Void,String> {
@Override
protected String doInBackground(String... params) {
// Connect to a SQLite DataBase, do some stuff..
// Populate the Array, and return a succeed message
// As String succeed = "Loaded";
return succeed;
}
@Override
protected void onPostExecute(String result) {
if(result.equals("Loaded") {
// You can create and populate an Adapter
ArrayAdapter<String> adapter = new ArrayAdapter<String>(
SearchActivity.this,
android.R.layout.simple_list_item_1, values);
setListAdapter(adapter);
}
}
}
}
最后,我更喜欢将SearchView
小部件与 AppCompat 或 ActionBarSherlock 一起使用,并且它描述了该主题的at the end。自从你提出问题(3年前^^)之后,我觉得更适应了。所以,要做:
// Example with AppCompat
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the options menu
getMenuInflater().inflate(R.menu.options_menu, menu);
MenuItem searchItem = menu.findItem(R.id.menu_search);
// Get the SearchView and set the searchable configuration
SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
SearchView searchView = (SearchView) MenuItemCompat.getActionView(searchItem);
// Assumes current activity is the searchable activity
searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
searchView.setIconifiedByDefault(true); // Iconify the widget
return true;
}
并执行startActivity()
方法将查询传递给SearchActivity
方法中的onOptionsItemSelected
。然后,您只需将此搜索项添加到菜单中,如下所示(不要忘记custom prefix),就像您在Adding an Action View上看到的那样:
<item android:id="@+id/action_search"
android:title="@string/action_search"
android:icon="@drawable/ic_action_search"
yourapp:showAsAction="ifRoom|collapseActionView"
yourapp:actionViewClass="android.support.v7.widget.SearchView" />
在sample Docs中,您有可搜索词典演示,其中包含ListView
并提供通过SQLite DataBase
连接Adapter
的完整演示。
瞧!我希望你找到解决方案,这篇文章将帮助那些想要相同的人。