“Android Back Press Symbolleiste” Code-Antworten

Android -Schaltfläche hinzufügen zur Symbolleiste zurück

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

Android Back Press Symbolleiste

@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 -Schaltfläche hinzufügen zur Symbolleiste zurück

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

Ähnliche Antworten wie “Android Back Press Symbolleiste”

Fragen ähnlich wie “Android Back Press Symbolleiste”

Weitere verwandte Antworten zu “Android Back Press Symbolleiste” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen