본문 바로가기
DEVELOPMENT

[실무에 바로 적용하는 안드로이드 프로그래밍 - Kotlin] Challenge 1: Toast Customizing

by 200% 2021. 7. 13.

토스트 메시지가 화면 아래가 아닌 위에 뜨도록 바꾸기

trueButton.setOnClickListener { view: View ->
            Toast.makeText(this, R.string.correct_toast, Toast.LENGTH_SHORT).run {
                this.setGravity(Gravity.TOP, 0, 0)
                this.show()
            }
        }
        falseButton.setOnClickListener { view: View ->
            Toast.makeText(this, R.string.incorrect_toast, Toast.LENGTH_SHORT).run {
                this.setGravity(Gravity.TOP, 0, 0)
                this.show()
            }
        }