android中的警报通知

时间:2016-05-25 04:19:14

标签: android android-notifications

我想发布线通知等通知。我尝试过使用警报,但它没有用。有人可以帮我解决我的问题吗?

3 个答案:

答案 0 :(得分:0)

如果您正在查找即使您的应用未在前台运行也会发送的通知,This example 会让您对此有所了解。

答案 1 :(得分:0)

你在找这个吗?

enter image description here

您可以像Full tutorial

一样创建它
portfolio id    |   begin_date   |   end_date  
---------------------------------------------
      1         |    20150101    |   20150130
etc...

答案 2 :(得分:0)

这是您创建警报对话框的方式

new AlertDialog.Builder(YourActivity.this)
    .setTitle("Alert")
    .setMessage("Hi, This is alert dialog")
    .setPositiveButton("OK", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) { 
            // do somthing
        }
    })
    .setNegativeButton("CANCEL", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) { 
            dismiss();
        }
    })
    .show();