How to access “Activity.this” in Kotlin?

2020-02-02 09:36发布

问题:

I have this piece of Java code:

MaterialDialog builder = new MaterialDialog.Builder(MainActivity.this)

I want to get the MainActivity object in Kotlin. The automatic conversion breaks at MainActivity.this.

回答1:

You can get a reference to your MainActivity object in Kotlin by using a qualified this. e.g.:

class MyActivity : MainActivity() {
    val builder = MaterialDialog.Builder(this@MyActivity)
}


回答2:

Try this instead

this@ActivityName


回答3:

If you are calling Activity.this from an inner class, you have to put inner before the class

class MyActivity : MainActivity() {
    // Call from class itself
    val builder = MaterialDialog.Builder(this@MyActivity) 

    inner class Inner {
        this@MyActivity // Call from the inner class 
    }
}


回答4:

Just as you do in java for getting the context of activity as MainActivtiy.this , in kotlin you will get the context as this@MainActivity



回答5:

getActivity() equivalent is this@activity_name in case of builder for materialDialog

materialDialog = MaterialDialog.Builder(this)


回答6:

You can get the object of activity like this.

class DemoActivity : MainActivity() {
    val builder = MaterialDialog.Builder(this@DemoActivity)
}