android 访问菜单文件夹中的资源

发布于 2025-01-07 03:52:41 字数 727 浏览 0 评论 0原文

我正在使用actionbarsherlock,并且我在菜单文件夹的actionbar.xml 中声明了我的菜单。这是actionbar.xml的内容

<menu xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:id="@+id/abSearch" android:showAsAction="always" android:icon="@drawable/search_orange"></item>
</menu>

,现在我尝试实现onOptionsItemSelected,这就是我所做的:

@Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case android.R.id.abSearch:
            Intent intent = new Intent(this, SearchRecipes.class);
            startActivity(intent);
            return true;

        }
    }

但问题是eclipse说abSearch无法解决。我多次尝试清理项目,但没有成功。

i'm using actionbarsherlock and i declared my menu in actionbar.xml in the menu folder. here's the content of actionbar.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:id="@+id/abSearch" android:showAsAction="always" android:icon="@drawable/search_orange"></item>
</menu>

now i tried to implement onOptionsItemSelected and here's what I did:

@Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case android.R.id.abSearch:
            Intent intent = new Intent(this, SearchRecipes.class);
            startActivity(intent);
            return true;

        }
    }

but the problem is eclipse says abSearch cannot be resolved. I tried cleaning the projects many times but to no avail.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

血之狂魔 2025-01-14 03:52:41

替换:

android.R.id.abSearch

为:

R.id.abSearch

Replace:

android.R.id.abSearch

With:

R.id.abSearch
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文