toast in kotlin

Solutions on MaxInterview for toast in kotlin by the best coders in the world

showing results for - "toast in kotlin"
Salomé
14 Nov 2020
1 Toast.makeText(applicationContext, "Hello", Toast.LENGTH_LONG).show()
Axel
24 Sep 2020
1//Add build.gradle module app
2    implementation 'io.github.muddz:styleabletoast:2.4.0'
3//And just use like this
4StyleableToast.makeText(applicationContext,
5                                "Bulunduğunuz bölgede IPV6 Kullanılmıyor !",
6                                Toast.LENGTH_LONG,
7                                R.style.toastinfo
8                            ).show();
Sebastián
16 Jan 2020
1Toast.makeText(this, "Sign in", Toast.LENGTH_LONG).show()
Federico
15 Apr 2018
1Toast.makeText(this, ".....", Toast.LENGTH_SHORT).show
similar questions
queries leading to this page
toast in kotlin