Making toast in Android Get link Facebook X Pinterest Email Other Apps September 11, 2021 Context context = getApplicationContext();CharSequence text = "Hello toast!";int duration = Toast.LENGTH_SHORT;Toast toast = Toast.makeText(context, text, duration);toast.show(); Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment