Answers for "what is toast in android with example"

1

android java toast

Toast.makeText(context this, text "Example of Text", Toast.LENGTH_LONG).show();
Posted by: Guest on January-05-2021
0

android studio Toast usage

Context context = getApplicationContext();
    CharSequence text = "Hello toast!";
    int duration = Toast.LENGTH_SHORT;

    Toast toast = Toast.makeText(context, text, duration);
    toast.show();
Posted by: Guest on August-12-2020

Code answers related to "what is toast in android with example"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language