Android Toast消息提醒

逆水行舟用力撑,一篙松劲退千寻。这篇文章主要讲述Android Toast消息提醒相关的知识,希望能为你提供帮助。

protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.first_layout); //寻找按钮的Id Button button_1 = findViewById(R.id.button_1); //注册一个监听器,监听点击事件 button_1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //创建Toast对象,然后调用show方法 Toast.makeText(FirstActivity.this," 你点了按钮1" ,Toast.LENGTH_SHORT).show(); //也可以这样 //Toast toast = Toast.makeText(FirstActivity.this," 按钮2" ,Toast.LENGTH_SHORT); //toast.show(); } }); }

Toast.makeText(Context context, CharSequence text, @Duration int duration)
参数说明:
  • 上下文
  • 消息内容
  • 【Android Toast消息提醒】停留时间
    • 短时间:Toast.LENGTH_SHORTT
    • 长时间:Toast.LENGTH_LONG

    推荐阅读