Show backspace icon in actionbar using Fragment

0

I am using the main activity to call my fragment but I need the icon to be implemented in actionbar of backspace.

call fragment:

getSupportFragmentManager()
                .beginTransaction()
                .replace(R.id.frameContainer, new ProvidersFragment())
                .addToBackStack(null)
                .commit();

How do I automatically open the fragment when I add my icon back to actionbar ?

    
asked by DoubleM 31.08.2018 в 01:21
source

0 answers