목록When (1)
woong's
Android Kotlin When 사용하기
Android Kotlin When 사용하기 코틀린의 when 이라는 예약어를 통해서 다중 if 문 , switch 을 대체 할수 있습니다.사용방법은 간단하고 명확합니다. 12345678910111213141516171819202122232425 /** * 프래그먼트 변경 */ private fun replaceFragments(position: Int) { supportFragmentManager.beginTransaction().apply { when (position) { 0 -> { replace(R.id.frameFragment, followFragment) } 1 -> { replace(R.id.frameFragment, unFollowFragment) } 2 -> { replace(R.id...
Develop/Android
2017. 12. 10. 18:05