I hope you can help me. I'm new to android
I am trying to solve this problem, but I could not
problem when i declared this method
public void onNavigationDrawerItemSelected(int position) { // slide menue declaration Fragment fragment = null; switch (position) { case 0: fragment = new menu1_Fragment(); break; case 1: fragment = new menu2_Fragment(); break; case 2: fragment = new menu3_Fragment(); break; default: break; }
it gives me an error saying that android .support.v4.app.fragment is required
android import android-fragments
user3821979
source share