When I press the menu the screen button the screen fades away slowly and up pops my apparently in Jellybean. Is these issue with my code or any other stuff going on? I can't seem to find out how to change it.
Anyone know this thing?
Here is my java code with onCreateOption Menu :
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
My menu xml file "activity_main" :
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/menu_settings"
android:title="@string/menu_settings"
android:orderInCategory="100"
android:showAsAction="never" />
</menu>
Thanks, Jay Patel