Answers for "how to show a toast in android continuosly without break when the app is put in background"

1

toast.maketext

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 May-29-2020
-1

android java toast

Toast.makeText(this, "Mmm Toasty", Toast.LENGTH_LONG).show();
Posted by: Guest on January-27-2021

Code answers related to "how to show a toast in android continuosly without break when the app is put in background"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language