【发布时间】:2014-12-14 12:41:27
【问题描述】:
我在我的活动中添加了一个 SearchView 并定义了一个搜索活动来处理搜索。我添加了 OnQueryTextListener 并从 onQueryTextSubmit() 方法调用 startSearch() 方法。当我将全局搜索设置为true 时,它会启动谷歌搜索。当我将它设置为false 时,什么也没有发生。下面是代码:
final SearchView searchText = (SearchView) customView.findViewById(R.id.txtSearch);
searchText.setFocusable(true);
searchText.setIconifiedByDefault(false);
searchText.setQueryHint(SearchActivity.this.getResources().getString(R.string.search_text_hint));
final SearchView.OnQueryTextListener queryTextListener = new SearchView.OnQueryTextListener() {
@Override
public boolean onQueryTextChange(String newText) {
// Do something
final String searchText = newText;
if (newText.equals("")) {
suggestAdapter.removeAll();
suggestAdapter.notifyDataSetChanged();
return true;
}
if (newText.length() < 4) {
return true;
}
if (!last_onTextChanged.equals(newText))
onchangeHandler.removeCallbacksAndMessages(null);
else
return true;
last_onTextChanged = newText;
onchangeHandler.postDelayed(new Runnable() {
@Override
public void run() {
getSearchSuggestions(searchText);
}
},800);
return true;
}
@Override
public boolean onQueryTextSubmit(String query) {
// Do something
startSearch(query,true,null,false);
return true;
}
};
searchText.setOnQueryTextListener(queryTextListener);
以下是自定义操作栏布局中定义的custom_search_action_bar.xml
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/abc_icon"
android:layout_toEndOf="@+id/txtSearch"
android:layout_marginEnd="20dp"
android:layout_marginTop="12dp"
android:layout_marginStart="0dp"
android:background="@color/logo_green"
android:layout_centerVertical="true"
android:visibility="gone"
android:id="@+id/ic_abc_button"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/barcode_icon"
android:layout_toEndOf="@+id/txtSearch"
android:layout_marginEnd="20dp"
android:layout_marginTop="5dp"
android:layout_marginStart="0dp"
android:background="@color/logo_green"
android:layout_centerVertical="true"
android:id="@+id/ic_barcode_button"/>
</LinearLayout>
</RelativeLayout>
以下定义在res/xml/searchable.xml
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:label="@string/app_name">
</searchable>
最后在 AndroidManifest.xml
<activity
android:name=".view.activity.tabsearch.SearchResultsActivity"
android:label="@string/title_activity_search_results"
android:parentActivityName=".view.activity.tabsearch.SearchActivity"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.rayat.pricewiz.view.activity.tabsearch.SearchActivity" />
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
</activity>
<provider android:name="com.rayat.pricewiz.provider.SearchContentProvider"
android:authorities="com.rayat.pricewiz.provider.SearchContentProvider" />
</application>
感谢任何帮助
【问题讨论】:
-
你搞清楚了吗?
-
不,我最终添加了自己的实现,即在操作栏中手动添加 Edittext 和按钮并处理搜索查询。覆盖活动的
handleIntent方法,防止搜索结果活动打开自己的另一个活动实例 -
是的,同样的事情,我也这样做了。
标签: java android xml searchview searchactivity