LoginSignup
0
0

More than 3 years have passed since last update.

2回目のKotlin contextの引数

Last updated at Posted at 2020-05-21

初めての人用は割と見つかるけど、そのあと何したら良いのか分からないので、その段階にいる私が詰まったところをメモっていく
間違いなくこれは正しい内容ではない、最低限の内容

本題

Contextの引数に何を入れたら動くのか分からない
→this入れたら動いた

MainActivity.kt
class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        sampleFunction(this)
    }

  fun sampleFunction(context: Context?) {
    // 中身
  }

}

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0