use of app.insti.fragment.NotificationsFragment in project IITB-App by wncc.
the class MainActivity method onOptionsItemSelected.
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_notifications) {
NotificationsFragment notificationsFragment = new NotificationsFragment();
notificationsFragment.show(getSupportFragmentManager(), TAG);
return true;
}
return super.onOptionsItemSelected(item);
}
Aggregations