“Toolbar Press Back Android” Kode Jawaban

Android Tambahkan tombol kembali ke Toolbar

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

Toolbar Press Back Android

@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 Tambahkan tombol kembali ke Toolbar

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

Jawaban yang mirip dengan “Toolbar Press Back Android”

Pertanyaan yang mirip dengan “Toolbar Press Back Android”

Lebih banyak jawaban terkait untuk “Toolbar Press Back Android” di Java

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya