As others pointed out, you need to change the switch() statement to if() / else if() / else expressions. R.id.menu_search not a constant ( static final ) and cannot be used in a case . This is because R.id.menu_search comes from your Android library project. android.R.id.home is a constant because it is part of the OS and does not change.
source share