-1
I have a Fragment and I’m putting these two methods in the class
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater menuInflater) {
menuInflater.inflate(R.menu.alerta, menu);
super.onCreateOptionsMenu(menu, menuInflater);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.menu_item_new_quote:
// TODO put your code here to respond to the button tap
Toast.makeText(getActivity(), "ADD!", Toast.LENGTH_SHORT).show();
return true;
default:
return true;
}
}
and I have an xml file I created in the menu folder
But the icons don’t want to appear in actionbar at all...
Can inform the XML?
– David Araujo