
Hi All,
Am very new to andriod tech.
Somehow I come to know about Toast.makeText.
It displays the message at the bottom of my application.
I want to align this toast dialog anywhere in the screen. Is it possible?
How to achieve this?
I tried the following as well but am not success.
Toast tost = new Toast(this);
tost.setGravity(Gravity.TOP, 20, 30);
tost.setDuration(Toast.LENGTH_LONG);
tost.setText("Sucess . . ");
tost.show();
===========================
plz help me out.