- Add this to dependencies:
implementation 'androidx.appcompat:appcompat:1.0.2'. - Add this:
import androidx.fragment.app.FragmentTransaction;. - Switch your activity extends from
ActivitytoAppCompatActivity. - Change from
getFragmentManager()togetSupportFragmentManager().
This will fix your issue.