public fun showCustomToast(){ val inflater = layoutInflater val container: ViewGroup = findViewById(R.id.custom_toast_container) val customLayout: ViewGroup = inflater.inflate(R.layout.custom_toast, container) val textView: TextView = layout.findViewById(R.id.text) textView.text = "Custome Toast Message" with (Toast(applicationContext)) { setGravity(Gravity.TOP or Gravity.LEFT, 0, 0) duration = Toast.LENTH_SHORT view = customLayout show() } }