I'm trying to add a next button in my app action bar ( Sherlock ), I'm new and couldn't find tut's anywhere so I tried using guides from Android.com, I want to add a next button into my first activity action bar
this is my Code at the StartActivity.java
@Override
public boolean onCreateOptionsMenu(Menu menu) {
android.view.MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.StartActivity, menu);
return true;
}
and this is the xml of main.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/bNext"
android:title="Next"
android:showAsAction="ifRoom|withText" />
</menu>
I get an error from R."menu".StartActivity
menu cannot be resolved or is not a field