- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在实现 SearchView 时遇到问题,这让我发疯。我按照这个问题的答案中建议的方法在 ActionBar 中实现了一个 SearchView:
Implementing SearchView in action bar
我已经根据自己的需要修改了建议的代码,所以建议会根据输入的内容进行过滤,而且效果很好,只是我无法让 OnSuggestionListener 工作!
包含 SearchView Actionbar 的 Activity 的相关部分:
public class MyGroupsActivity extends ActionBarActivity {
private List<String> allItems;
private Menu menu;
private SearchView searchView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my_groups);
allItems = getAllItems();
}
@Override
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_my_groups, menu);
this.menu = menu;
// Associate searchable configuration with the SearchView
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
SearchManager manager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
searchView = (SearchView) menu.findItem(R.id.action_search).getActionView();
searchView.setSearchableInfo(manager.getSearchableInfo(getComponentName()));
searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
@Override
public boolean onQueryTextSubmit(String s) {
System.out.println("onQueryTextSubmit " + s);
return true;
}
@Override
public boolean onQueryTextChange(String query) {
loadHistory(query);
return true;
}
});
}
return true;
}
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
private void loadHistory(String query) {
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
String[] columns = new String[] { "_id", "text" };
Object[] temp = new Object[] { 0, "default" };
MatrixCursor cursor = new MatrixCursor(columns);
List<String> result = new ArrayList<>();
for(int i = 0; i < allGroups.size(); i++) {
if(allItems.get(i).toLowerCase().contains(query.toLowerCase())){
temp[0] = i;
temp[1] = allItems.get(i);
cursor.addRow(temp);
result.add(allItems.get(i));
}
}
searchView.setSuggestionsAdapter(new SearchViewAdapter(this, cursor, result));
searchView.setOnSuggestionListener(new SearchView.OnSuggestionListener() {
@Override
public boolean onSuggestionSelect(int i) {
System.out.println("onSuggestionSelect");
Cursor cursor = (Cursor) searchView.getSuggestionsAdapter().getItem(i);
String feedName = cursor.getString(1);
searchView.setQuery(feedName, false);
searchView.clearFocus();
return true;
}
@Override
public boolean onSuggestionClick(int i) {
System.out.println("onSuggestionClick");
Cursor cursor = (Cursor) searchView.getSuggestionsAdapter().getItem(i);
String feedName = cursor.getString(1);
System.out.println(feedName + " clicked ");
searchView.setQuery(feedName, false);
searchView.clearFocus();
return true;
}
});
}
}
}
我的 CustomAdapter 子类:
public class SearchViewAdapter extends CursorAdapter {
private List<String> items;
private TextView text;
public SearchViewAdapter(Context context, Cursor cursor, List<String> items) {
super(context, cursor, false);
this.items = items;
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
text.setText(items.get(cursor.getPosition()));
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.search_item, parent, false);
text = (TextView) view.findViewById(R.id.textView);
return view;
}
}
还有我的 search_item.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true"
android:id="@+id/textView"
android:layout_margin="5dp"
android:textColor="@color/accent" />
</RelativeLayout>
我试过使用 OnClickListener,我试过将它放在 CustomAdapter 的 bindView 方法中,我试过在 onCreate 中实例化适配器,还有很多其他的东西,我现在甚至都不记得了。工作。当我点击建议列表中的一个项目时,我在 logcat 中得到的是:
D/ViewRootImpl﹕ ViewPostImeInputStage ACTION_DOWN
那么,说清楚一点——我如何检测对建议的点击并获取该项目的值?
非常感谢对此的任何帮助和评论!谢谢!
最佳答案
我有一个工作代码,并且在设置建议适配器之前设置了 onSuggestionListener。你能试试同样的吗?
关于android - 使用 CursorAdapter 从 ActionBar SearchView 获取建议点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30378712/
我在我的应用程序中设置了一个操作栏。我通过调用 Activity.getActionBar() 取回 ActionBar .然后我设置了我需要的所有选项卡感谢 ActionBar.addTab()和
我正在为 Android 平板电脑 (XOOM) 开发应用程序,我想知道是否可以将操作栏放在屏幕底部,而不是顶部(这是默认选项) . 谢谢。 最佳答案 如果您在 Activity 中获取 Action
我很想为我用“ActionBar Sherlock”库导入的 ActionBar 设置一个背景图像。但是,我在 Internet 上找不到任何有关如何使用 XML 独特地设置 BackgroundIm
我需要在栏下方显示子菜单,而不是在栏本身的顶部。 复制下面我的 actionbar xml 在activity中(
我已经阅读了 AppCompat 库中的工具栏及其所有功能。我在 android 开发者博客 (here) 中注意到的一些事情是: Toolbar is fully supported in AppC
我试图做一个 Espresso 测试来检查 actionbar 是否隐藏/显示,但我似乎无法弄清楚如何将它与 Espresso.onView(...) 匹配。 Afaik它没有ID,对吧? 非常感谢
我们怎样才能让操作栏和操作栏选项卡变成纯白色。我正在使用 android-support-v7-appcompat 库来支持向后兼容性。 style/Theme.AppCompat.Light.Dar
在 Galaxy S3 上,我遇到一个问题,即 ActionBar 中的一个按钮被配置为 showAsAction="always"并且同时显示在硬件溢出菜单和操作按钮上。我希望它不显示在硬件溢出菜单
我正在学习教程 https://www.youtube.com/watch?v=VVahIc8yENk我得到了错误 java.lang.NullPointerException: Attempt to
背景 我希望在 PreferenceActivity 上显示一个 ActionBar,因为它不适用于 Honeycomb 之前的设备(即使在支持库中)。 因为这样的类在支持库中不可用,所以我不能只调用
我想实现将下载数据并将其设置到 ActionBar 选项卡中的应用程序。我已经实现了它,但我还有一件事要做。我试过添加操作栏列表,像这样 one , 但 android 不允许同时使用 Tabs 和
我希望我的 ActionBar 和 Tabs 看起来像这样。 请忽略颜色 目前看起来是这样 由于我的主题,我必须在 java 中设置自定义 ActionBar。 actionBar.setDispla
我目前正在某些页面上设置 ActionBar 副标题,但在某些页面上我不想有副标题。 我可以简单地将字幕文本设置为空,但这只会删除文本。它仍然占据字幕空间,从而将标题推高。可能很难解释,所以我用图片说
import android.app.ActionBar; import android.app.FragmentTransaction; import android.content.Intent;
我正在使用 ActionBarSherlock ,并尝试隐藏/显示全屏图像的 ActionBar,使用: getSupportActionBar.hide(); 和 getSupportActionB
我在我的简单应用程序上使用 ActionBarSherlock,如果用户在主页/主要 Activity 中,我想隐藏主页按钮。我了解如何使用 setHomeButtonEnabled(false) 执
我发现自己在 3 个单独的 Activity 中为我的 actionBar (actionBarSherlock) 列表重写了相同的代码。所有 3 个都使用相同的 actionBar,它有 3 个项目
我正在使用 ActionBarSherlock 在关于 ActionBar 标签高度的类似问题中,我使用了: @style/blah1 @style/blah2 80dp .
我一直在寻找是否有任何关于如何始终在 ActionBar 下方显示 ActionBar 选项卡的信息,即使当手机横向时也是如此。我知道它会根据屏幕上是否有足够的空间来自动将选项卡放置在 ActionB
我在 ActionBar 上方显示的 ActionBar Tabs 出现了这种奇怪的行为。当我为 ActionBar 设置自定义 View 时,这恰好发生了。我正在使用 Roman Nurik 的示例
我是一名优秀的程序员,十分优秀!