728x90
view.context
= this
java: View.getContext
โ
/**
* Returns the context the view is running in, through which it can
* access the current theme, resources, etc.
*
* @return The view's Context.
*/
โ
: ํ์ฌ ์คํ๋๊ณ ์๋ ๋ทฐ์ context๋ฅผ ๋ฐํํ๋ค.
this๋ผ๊ณ ๋์ ํํํ ์ ์๋ค. ํ์ง๋ง this๋ ํ์ฌ ์กํฐ๋นํฐ์์์ this๋ฅผ ์๋ฏธํ๋ฏ๋ก, ํ์ฌ ์์ ์ด ์์นํ ๊ณณ์ ๋ฐ๋ผ this๋ ๋ฌ๋ผ์ง๋ค.
val intent = Intent(this, MainActivity::class.java).show()
startActivity(intent)
โ
โ
์)ClickableSpan์ onClick ๋ฉ์๋๋ฅผ ์ฌ์ ์ํ ๋์ this๋ ํ์ฌ Activity๋ฅผ ์๋ฏธํ๋๊ฒ์ด ์๋๋ผ ClickableSpan์ ์๋ฏธํ๋ค.
โ
โ
728x90