Closed bakbuz closed 9 years ago
when the first menu is clicked, it becomes infinite loop. how can I fix this problem
@Override public void onNavigationDrawerItemSelected(int position) { switch (position) { case 0: // giriş ekranını göster this.startActivity(new Intent(this, Arama.class)); break; case 1: //detaylı arama this.startActivity(new Intent(this, DetayliArama.class)); break;
...
Remove the selectItem call from the onCreate method on the fragment
it's works. thank you.
when the first menu is clicked, it becomes infinite loop. how can I fix this problem
...