我试图onCreateOptionsMenu
在我的应用程序中使用。我关注了开发人员博客,但它对我不起作用。
当我使用此代码时:
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu items for use in the action bar
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.homepage_actionbar, menu);
return super.onCreateOptionsMenu(menu);
}
我得到了这个编译错误:
Multiple markers at this line
- Syntax error on token ")", ; expected
- Illegal modifier for parameter onCreateOptionsMenu; only final is
permitted
- Syntax error on token "(", ; expected
Multiple markers at this line
- Void methods cannot return
a value
我的 XML 文件:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/add_option"
android:title="Add Item"
android:icon="@drawable/ic_launcher"
android:showAsAction="ifRoom"
/>
</menu>
感谢您的帮助