📜  toast message android studio - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:57.453000             🧑  作者: Mango

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

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