如何显示没有取消和确定按钮的警报框?

时间:2011-04-05 06:36:00

标签: android

我想创建一个没有确定和取消按钮的警报框。警报框应显示特定时间段。

5 个答案:

答案 0 :(得分:3)

试试此代码

"AlertDialog.Builder alertbox = new AlertDialog.Builder(MainActivity.this);
alertbox.setMessage("Do You want to Save?");
alertbox.create();
alertbox.show();"

它会帮助你......

答案 1 :(得分:1)

你可以使用Toast:

Toast toast = Toast.makeText(this, getString(R.string.my_string, Toast.LENGTH_SHORT);
toast.show();

答案 2 :(得分:0)

答案 3 :(得分:0)

您可以使用AlarmManager或TimerTask类在限定时间内显示数字。 要删除“确定”和“取消”按钮,可以使用LayoutInflater。

答案 4 :(得分:0)

  1. 使用this tutorial自定义对话框。
  2. 然后删除XML中的该按钮
  3. 然后添加一个处理程序 - this link - 并在一段时间后关闭对话框。
    1. 使用祝酒消息。