没有任何按钮的通知栏

时间:2014-08-12 12:38:02

标签: android push-notification android-notifications android-notification-bar

我想向用户发送一些通知,但我不想向用户显示设置按钮和其他通知等标准项。我的意思是我需要一个空的通知栏。有没有办法创建一个空的通知栏?

3 个答案:

答案 0 :(得分:0)

发布到目前为止的代码总是有帮助的。我知道如果您没有提供图标,通知将不会显示,除非您将其标记为" PRIORITY_LOW"。

Here是一篇包含更多信息的帖子,可能会帮助您解决问题!

答案 1 :(得分:-1)

   **JS**

功能错误(msg){

$('<div/>').prependTo('body').addClass('notify-error').html(msg).slideDown();

}

功能成功(msg){

$('<div/>').prependTo('body').addClass('notify-success').html(msg).slideDown();

}

$('#notify-error').click(function () {

    $(this).slideUp().empty();

});

$('#notify-success').click(function () {

    $(this).slideUp().empty();


});   

误差(&#39;错误&#39;!);

成功(&#39;!成功&#39);

答案 2 :(得分:-1)

<强> .CSS

.notify-success {

    position:relative;

    width:100%;

    background-color:green;

    height:30px;

    color:white;

    display:none;

    text-align:center;

    padding:5px;

    font-size:2em;

    line-height:1em;

    font-family: Arial, sans-serif;

    border:2px solid #666;

    cursor:pointer;
}

 .notify-error {
    position:relative;

    width:100%;

    background-color:red;

    height:30px;

    color:white;

    display:none;

    text-align:center;

    padding:5px;

    font-size:2em;

    line-height:1em;

    font-family: Arial, sans-serif;

    border:2px solid #666;

    cursor:pointer;
 }