Playing with Toast message notification | [ Android Newbie ]

Playing with Toast message notification | [ Android Newbie ]

瀏覽:1199
日期:2025-05-19
public static void displayToast(Context c, String text, int duration) { Toast.makeText(c, text, duration).show(); } By default, toast will stay close to the bottom of the screen. If you want to set it in other location, just use setGravity() to define the...看更多