I'm new to Android. Now I'm learning about Toast. Is it possible to position a toast?
Whenever I toast, it is coming in bottom of the screen.
Here is my code:
Context context = getApplicationContext();
Toast toast = Toast.makeText(context, "Saved successfully.", Toast.LENGTH_SHORT);
toast.show();