📜  如何在 android 中制作吐司 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:22.037000             🧑  作者: Mango

代码示例5
Context context = getApplicationContext();
    CharSequence text = "Hello toast!";
    int duration = Toast.LENGTH_SHORT;

    Toast toast = Toast.makeText(context, text, duration);
    toast.show();