Android 带有搜索视图的自定义 ActionBar

Android Custom ActionBar with Search View

我在 Android 应用程序中使用自定义 ActionBar 库。我想显示一个 searchView 但找不到任何解决方案,我在
的图书馆工作 https://github.com/johannilsson/android-actionbar

这是一个class

private class ExampleAction extends AbstractAction {

        public ExampleAction() {
            super(R.drawable.ic_title_export_default);
        }

        @Override
        public void performAction(View view) {
            Toast.makeText(OtherActivity.this, "Example action",
                    Toast.LENGTH_SHORT).show();
        }

    }
    //use for signle action how to use for multiactions
       ActionBar actionBar = (ActionBar) findViewById(R.id.actionbar);
       actionBar.addAction(new ExampleAction());


实际上我找到了搜索栏的代码,但它是 .cs 格式 如何使用此搜索视图
https://github.com/zleao/MonoDroid.ActionBar

谢谢兄弟姐妹

看看这个answer。 根据这个答案 SearchView 是可用的支持库。 添加对 build.gradle

的依赖
compile 'com.android.support:appcompat-v7:22.0.0'

并进行进口

import android.support.v7.app.ActionBarActivity; import android.support.v7.widget.SearchView;

根据这个答案,它在 API 8 模拟器上工作。有关更多详细信息,请检查 link 与问题和答案本身。 希望对你有帮助。

更新

通过添加此代码

<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:hmkcode="http://schemas.android.com/apk/res-auto">
<item
    android:id="@+id/action_search"
    android:orderInCategory="100"
    hmkcode:showAsAction="always"
    android:icon="@drawable/ic_action_search"
    android:title="Search"/>
<item
    android:id="@+id/action_copy"
    android:orderInCategory="100"
    hmkcode:showAsAction="always"
    android:icon="@drawable/ic_content_copy"
    android:title="Copy"/>
<item
    android:id="@+id/action_share"
    android:orderInCategory="100"
    hmkcode:showAsAction="always"
    android:icon="@drawable/ic_social_share"
    android:title="Share"/>

你可以做到这一点:

您可以按照自己的方式自定义项目。有关详细信息,请参阅此 example