FragmentManager and androidx FragmentManager
Add this to dependencies: implementation ‘androidx.appcompat:appcompat:1.0.2’. Add this: import androidx.fragment.app.FragmentTransaction;. Switch your activity extends from Activity to AppCompatActivity. Change from getFragmentManager() to getSupportFragmentManager(). This will fix your issue.