kanytu / android-material-drawer-template

An Android template with navigation drawer for material design
Apache License 2.0
674 stars 217 forks source link

when the first menu is clicked, I want to startActivity #37

Closed bakbuz closed 9 years ago

bakbuz commented 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;

...

kanytu commented 9 years ago

Remove the selectItem call from the onCreate method on the fragment

bakbuz commented 9 years ago

it's works. thank you.