Toast works in Java activity but not kotlin
I have a custom toast and the funny thing is that the toast works in java activities but not in kotlin, in kotlin activities it throws the following error:
kotlin.TypeCastException: null cannot be cast to non-null type android.view.ViewGroup
on this line
val layout = inflater.inflate(R.layout.custom_toast,
findViewById(R.id.custom_toast_container) as ViewGroup)
Here is the toast:
How i call it in java:
LayoutInflater inflater = getLayoutInflater();
View...