- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我的操作栏中有一个 SearchView
小部件,当用户输入一个或多个字符时,它会显示正确的建议搜索词。
我还想在 SearchView
为空时显示(不同的)建议列表,包括在用户输入任何文本之前。
到目前为止,当用户输入文本然后删除该文本,以及当用户点击搜索图标打开小部件然后在打开后再次点击搜索小部件时,它都可以正常工作。为此,我使用了一个 OnQueryTextListener
,如下所示:
class SearchTextEnteredListener implements SearchView.OnQueryTextListener {
@Override
public boolean onQueryTextChange(String newText) {
if (newText.length() > 1) {
// Set normal suggestions
CursorAdapter searchadapter = new SearchSuggestionsAdapter(mContext, suggestions);
mSearchView.setSuggestionsAdapter(searchadapter);
} else if (newText.length() == 1) {
// Clear the displayed suggestions
if(searchadapter != null && mSearchView != null){
searchadapter.createAndChangeCursor(null);
}
} else {
// Length = 0, show other suggestions
CursorAdapter searchadapter = new SearchSuggestionsAdapter(mContext, otherSuggestions);
mSearchView.setSuggestionsAdapter(searchadapter);
}
return false;
}
}
但是,我希望搜索小部件一打开就弹出建议,而不是像现在这样需要第二次点击。我没有运气让它这样做。
我什至尝试手动查找 SearchView
的 AutoCompleteTextView
并在 SearchView
时调用 showDropDown()
获得焦点(见下文),但也没有显示下拉列表。
mSearchView.setOnQueryTextFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
int autoCompleteId = mContext.getResources().getIdentifier("android:id/search_src_text", null, null);
if (autoCompleteId == 0) {
// We won't be able to find the view. Give up.
return;
}
AutoCompleteTextView autoCompleteView = (AutoCompleteTextView) mSearchView.findViewById(autoCompleteId);
if (autoCompleteView != null) {
autoCompleteView.showDropDown();
}
}
}
});
如何在打开搜索小部件时使搜索建议下拉?
最佳答案
这是可能的。我正在使用 compat v7 SearchView 和 Cursor Loaders 进行与 Activity 生命周期协调一致的查询。
// e.g in onCreateView in my Fragment, wire up the SearchView:
MenuItem searchMenuItem = toolbar.getMenu().findItem(R.id.search_menu_item);
SearchView searchView = (SearchView) MenuItemCompat.getActionView(searchMenuItem);
// and setup listeners (implementation is shown later)
searchView.setOnSuggestionListener(this);
searchView.setOnQueryTextListener(this);
searchView.setOnCloseListener(this);
// then raid the SearchView so search begins on 0 chars!
AutoCompleteTextView autoCompleteTextView = (AutoCompleteTextView) searchView.findViewById(android.support.v7.appcompat.R.id.search_src_text);
autoCompleteTextView.setThreshold(0);
// and set the suggestions adapter so we can use a Loader to do the queries
SuggestionCursorAdapter suggestionCursorAdapter = new SuggestionCursorAdapter(getContext(), null, 0);
searchView.setSuggestionsAdapter(suggestionAdapter);
监听器的实现如下:
@Override
public boolean onQueryTextChange(String userInput) {
if (TextUtils.isEmpty(userInput.trim())) {
Log.d(TAG, "onQueryTextChange: empty userInput");
// The argument to the loader is null so your query should return all suggestions
getLoaderManager().restartLoader(SEARCH_VIEW_LOADER_ID, null, this);
return true;
}
userInput = userInput.trim();
Bundle args = new Bundle();
args.putString("USER_INPUT", userInput);
// The argument contains the users input so your query should use a LIKE to find matching suggestions
getLoaderManager().restartLoader(SEARCH_VIEW_LOADER_ID, args, this);
return true;
}
@Override
public boolean onQueryTextSubmit(String query) {
return true;
}
@Override
public boolean onClose() {
return false;
}
@Override
public boolean onSuggestionSelect(int position) {
return false;
}
@Override
public boolean onSuggestionClick(int position) {
Cursor c = searchView.getSuggestionsAdapter().getCursor();
final String suggestion = c.getString(c.getColumnIndex("some_column_name"));
Log.d(TAG, "onSuggestionClick: position: " + position + " suggestion: " + suggestion);
return true;
}
一个额外的细节,我的 SuggestionCursorAdapter 扩展了 CursorAdaptor 并覆盖了以下方法以防止:java.lang.IllegalStateException:尝试重新打开一个已经关闭的对象:SQLiteQuery
@Override
public void changeCursor(Cursor newCursor) {
newCursor.close();
}
锻炼很痛苦,希望对大家有帮助!
关于android - 显示针对空 SearchView 的建议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25870660/
我的 Activity 的主要内容区域中有一个 SearchView。 我需要覆盖我的 style.xml 文件中的 SearchView 样式(这样我就可以删除 SearchView 的下划线 -
我正在使用 Firebase-UI 的 FirebaseRecyclerAdapter。我无法在 SearchView 中实现过滤器。 我的数据库: 我的问题: 如何使用 FirebaseRecycl
我正在尝试以编程方式删除 SearchView 提示中的图标所占用的空间,但由于某种原因它不会消失。 此代码使图标不可见,但不会删除空格: try { Field mDrawa
我想在用户未输入任何内容时在 SearchView 中显示一些默认建议。我正在使用矩阵光标手动设置我的自定义建议适配器。我尝试在 onFocusChange 和 onClickListner 中设置适
如何删除或更改编辑文本中的搜索 View 图标?我正在使用 Appcompat 库。 我使用下面的代码修改和删除但它不起作用: SearchManager searchManager = (Searc
当我启动我的应用程序时,会引发以下错误: E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.app, PID: 5513 jav
在我的应用程序中使用 SearchView。 无论如何我可以延迟对 onQueryTextChange() 方法的调用。例如,当用户键入一系列字符时,他必须等待此方法被调用。 此等待应该不取决于键入的
我正在尝试从 Fragment 中的工具栏获取我的 SearchView。 我在 onCreateOptionsMenu 中引入了一个菜单项。 问题:searchItem.getActionView(
我不确定为什么会收到此错误。这是有问题的菜单: 这是根据 developer guide 的可搜索配置. 添加到我的 list 文件中: 我在新的搜索 Activity 中也有一个
我是一名开发 Android 应用程序的新手,以下是该应用程序的第一个屏幕。我希望我的应用程序使用该搜索对话框执行搜索。 为此,我关注了http://developer.android.com/gui
我正在 CustomAdapter 上执行 SearchView,它将在其中搜索门名称。在我尝试运行该应用程序后,它突然崩溃并给我如上所述的错误。我不知道我什至做错了哪一部分导致我每次尝试运行我的应用
您好,我需要在 searchView 中放置一些文本并聚焦/展开 searchView 小部件。 这是我尝试过的,但它不起作用 @Override public boolean onCreateOpt
所以当我遇到错误“无法解析类 SearchView”时,我试图在我的应用程序中包含一个搜索栏。谷歌没有帮助,所以我来到这里。这是我的代码: 其余的 xml 已正确完成,我直接从 android 获取
我的搜索 View 有问题。 我有 2 个主题,当我第一次接触 searchview 时,我得到了丑陋的第一张图片。但是当我再次进入搜索 View 时,我从第二张图片中得到了很好的主题。 我总是想走第
我使用的不是 menuItem 而是布局中的搜索 View 。我支持的最低 API 级别是 9,搜索 View 是 11。 现在我这样创建了我的搜索 View : 在直线布局中。我注意到警告,所以
我在 here 中解决了我的问题之后当我在搜索框中输入文本时,搜索过滤器仍然不起作用。 这是我的代码: package intikom.streammobile.Customer; import an
我正在创建类似于屏幕上的 Activity 。我在工具栏中阅读了许多关于 SearchView 的教程,并在我的 Activity 中实现了它并且它有效(上面的代码)。但是如何制作这个下拉列表呢?感谢
我按照 Android 的官方说明在工具栏中实现了 SearchView。 SearchView 本身工作得很好,但是当我点击搜索图标时,它会向左移动,而不是显示搜索提示和关闭按钮,尽管如果我单击这个
Android Studio 3.2.1 在我的app / build.gradle中: android { compileSdkVersion 28 defaultConfig {
我有一个 RecylerView,它有 SearchView 小部件和包含复选框和玩家名称的项目列表。当我滚动项目并选择项目复选框时没有问题。但是,当我通过名称搜索项目然后选择它们时,就会出现问题,当
我是一名优秀的程序员,十分优秀!