How can I open a new Activity inside of a fragment when using a button?
I tried this
override fun onViewCreated(view: View, savedInstanceState: Bundle?
You can do smth like this in kotlin
YourButton.setOnClickListener{ requireActivity().run{ startActivity(Intent(this, NeededActivity::class.java)) finish() } }