Код: Выделить всё
if (item.getItemId() == R.id.project) {
page_title.setText("Projects");
rcNotes.setAdapter(projectAdapter);
projectAdapter.notifyDataSetChanged();
return true;
} else if (item.getItemId() == R.id.task) {
rcNotes.clearOnChildAttachStateChangeListeners();
rcNotes.setAdapter(taskAdapter);
taskAdapter.notifyDataSetChanged();
page_title.setText("Tasks");
return true
Подробнее здесь: https://stackoverflow.com/questions/785 ... in-android