I am using a android toast message to display a message to the user but the duration even when set to _LENGTH_LONG seems not enough. I would like to try a SnackBar or any other display method but i am stuck. How can i apply that? This is my code.
@Override
protected void onPostExecute(String result) {
Toast toast = Toast.makeText(ctx, result, Toast.LENGTH_LONG);
toast.setGravity(Gravity.TOP, 0, 130);
toast.show();
}
How can i replace this toast with something like a snackbar or a message box that will set it to display for a longer time, say 1 minute?