i have a problem. I want hide ActionBar and show Menu.
I hided ActionBar with this code.
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
and I created Menu with this code.
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
MenuInflater menuInflater = getMenuInflater();
menuInflater.inflate(R.menu.menu,menu);
return super.onCreateOptionsMenu(menu);
}
But problem, not show menu. Can you help me ?