“Android Back Press Toolbar” Kod odpowiedzi

Android dodaj przycisk Wstecz do paska narzędzi

getSupportActionBar().setDisplayHomeAsUpEnabled(true);getSupportActionBar().setDisplayShowHomeEnabled(true);
Grotesque Goose

Android Back Press Toolbar

@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
    case android.R.id.home:
        // this takes the user 'back', as if they pressed the left-facing    

      triangle icon on the main android toolbar.
        // if this doesn't work as desired, another possibility is to call   

        stopActivityTask();  // finish() here.
        getActivity().onBackPressed();
        return true;
    default:
        return super.onOptionsItemSelected(item);
}
}
Disgusted Dragonfly

Android dodaj przycisk Wstecz do paska narzędzi

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);setSupportActionBar(toolbar);
Grotesque Goose

Odpowiedzi podobne do “Android Back Press Toolbar”

Pytania podobne do “Android Back Press Toolbar”

Więcej pokrewnych odpowiedzi na “Android Back Press Toolbar” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu