状态栏的图标与文字提醒(NotificationManager与Notification对象的应用)

状态栏的图标与文字提醒(NotificationManager与Notification对象的应用)

新建一个继承Activity类的NotificationManagerAndNotificationActivity,并设置布局文件为:notificationmanagerandnotification.xml。

布局文件很简单,就是一个Button按钮。

 

    <Button

        android:id="@+id/notificationmanagerandnotification_btn"

        style="@android:style/Widget.Button.Inset"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:layout_marginTop="20dp"

        android:text="@string/send_notification" />

而后是在Activity中,实现的功能是:单按钮点击的时候,发送一个Notification消息。

package lyx.feng.third;

 

import lyx.feng.simpletextdemo.R;

import android.app.Activity;

import android.app.Notification;

import android.app.NotificationManager;

import android.app.PendingIntent;

import android.content.Intent;

import android.os.Bundle;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

 

public class NotificationManagerAndNotificationActivity extends Activity {

    private Button btn = null;

    private NotificationManager manager = null;

 

    @Override

    protected void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

        super.setContentView(R.layout.notificationmanagerandnotification);

       this.btn = (Button) super

               .findViewById(R.id.notificationmanagerandnotification_btn);

       this.manager = (NotificationManager) super

              .getSystemService(NOTIFICATION_SERVICE);

       this.btn.setOnClickListener(new OnClickListener() {

 

           @Override

           public void onClick(View v) {

              showNotification();

           }

 

       });

    }

 

    @SuppressWarnings("deprecation")

    private void showNotification() {

       Intent intent = new Intent(this,

              NotificationManagerAndNotificationActivity.class);

       intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

       PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,

              intent, 0);

       Notification notification = new Notification();

       notification.icon = R.drawable.icon_004;

       notification.tickerText = "这是标题文字";

       notification.defaults = Notification.DEFAULT_SOUND;

       notification.setLatestEventInfo(this, "这是标题文字", "这里显示的是具体的消息",

              pendingIntent);

       manager.notify(0, notification);

    }

}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值