Answers for "what is use of toast message in android studio"

0

toast message android studio

Toast.makeText( getBaseContext(), "message",Toast.LENGTH_SHORT).show();
Posted by: Guest on December-15-2021
-1

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 use of toast message in android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language