I have this: ``` open class CustomListViewActivity...
# announcements
f
I have this:
Copy code
open class CustomListViewActivity<T> : AppCompatActivity()
    where T : Activity {

    override fun onRestart() {
        super.onRestart()
        finish()
        startActivity<Class<T>>()
    }
}