android 访问菜单文件夹中的资源
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
替换:
为:
Replace:
With: