Android NotificationManager 和 Notification的使用总结

 
 
前言
这段时间一直在写一个自动检测Apk自动更新的功能。
其中有使用到这个通知栏信息,就一步去了解。
NotificationManager ,Notification的使用
        这里代码我就没有全部贴出来了。就贴出来了关键的代码。希望能对大家有帮助。
正文
R.layout.download_promp布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:padding="8dp"
    android:id="@+id/download_notification_root"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/download_promp_icon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <LinearLayout
            android:orientation="vertical"
            android:layout_marginLeft="10dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/download_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:id="@+id/download_promp_info"
                android:paddingTop="8dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

        </LinearLayout>

</LinearLayout>


1.这段代码提供给大家演示,直接创建一个方法,把一下代码copy到方法内就可以使用了


       NotificationManager motificationManager = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);
        Notification notification = new Notification();
        notification.icon = R.mipmap.ic_launcher_round;
        //添加声音提示
        notification.defaults = Notification.DEFAULT_SOUND;
        /* 或者使用以下几种方式
         * notification.sound = Uri.parse("file:///sdcard/notification/ringer.mp3");
         * notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
         * 如果想要让声音持续重复直到用户对通知做出反应,则可以在notification的flags字段增加"FLAG_INSISTENT"
         * 如果notification的defaults字段包括了"DEFAULT_SOUND"属性,则这个属性将覆盖sound字段中定义的声音
         */
        //audioStreamType的值必须AudioManager中的值,代表响铃模式
        notification.audioStreamType = AudioManager.ADJUST_LOWER;
        //添加LED灯提醒
        notification.defaults |= Notification.DEFAULT_LIGHTS;
        //或者可以自己的LED提醒模式:
        /*notification.ledARGB = 0xff00ff00;
        notification.ledOnMS = 300; //亮的时间
        notification.ledOffMS = 1000; //灭的时间
        notification.flags |= Notification.FLAG_SHOW_LIGHTS;*/
        //添加震动
        notification.defaults |= Notification.DEFAULT_VIBRATE;
        //或者可以定义自己的振动模式:
        /*long[] vibrate = {0,100,200,300}; //0毫秒后开始振动,振动100毫秒后停止,再过200毫秒后再次振动300毫秒
        notification.vibrate = vibrate;*/
        //状态栏提示信息
        notification.tickerText = mUpdateInfo.getAppname()+" 发现新版本,点击下载";
        //获取当前时间
        notification.when = System.currentTimeMillis();
        //加载自定义布局
        notification.contentView = getRemoteViews(context,"发现新版本,点击下载");
        // 点击清除按钮或点击通知后会自动消失
        notification.flags |= Notification.FLAG_AUTO_CANCEL;
        //开始显示消息
        motificationManager.notify(0, notification);


2、这段是我们自定义的通知栏布局


    //自定义notification布局
    public static RemoteViews getRemoteViews(Context context,String info) {
        RemoteViews remoteviews = new RemoteViews(context.getPackageName(),R.layout.download_promp);
        remoteviews.setImageViewResource(R.id.download_promp_icon,R.mipmap.ic_launcher_round);
        remoteviews.setTextViewText(R.id.download_title,mUpdateInfo.getAppname());
        remoteviews.setTextViewText(R.id.download_promp_info,info);
        //找到对应的控件(R.id.download_notification_root,为控件添加点击事件getPendingIntent(context)
        remoteviews.setOnClickPendingIntent(R.id.download_notification_root,getPendingIntent(context));
        return remoteviews;
    }


    /**
     * 给通知栏添加点击事件,实现具体操作,我们这里将信息发送到Service中,在服务中去做具体操作。也可以不将信息发送到Service中
     * @param context 上下文
     * @return
     */
    private PendingIntent getPendingIntent(Context context) {
        Intent intent = new Intent(context,UpdateService.class);
        intent.addFlags(FLAG_ACTIVITY_NEW_TASK);
        intent.putExtra("msg","Test发送到Service");
        PendingIntent pendingIntent = PendingIntent.getService(context,0,intent,0);
        return pendingIntent;
    }


 @Override
    public void onStart(Intent intent, int startId) {
        super.onStart(intent, startId);
	//这个是在Service中的onStart() 中去获取信息
        String msg = getIntent().getStringExtra("msg");
        Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();

    }



或者我们将信息发送到我们需要接受的Activity中,并且在Activity中的onCreate中去获取消息。


 private PendingIntent getPendingIntent() {
        Intent intent = new Intent(this,MainActivity.class);
        intent.putExtra("msg","从通知栏点击进来的");
        PendingIntent pendingIntent = PendingIntent.getActivity(this,0,intent,PendingIntent.FLAG_UPDATE_CURRENT);
        return pendingIntent;
    }


@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        String msg = getIntent().getStringExtra("msg");
        Toast.makeText(this,msg,Toast.LENGTH_SHORT).show();
    }


接下来可以查看一下别的博主写的:
====》
博主写的很不错,细节都做的很详细。可以提供给我们学习使用。点击打开链接
( 1 )、使用系统定义的Notification
以下是使用示例代码:
//创建一个NotificationManager的引用
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
// 定义Notification的各种属性
int icon = R.drawable.icon; //通知图标
CharSequence tickerText = "Hello"; //状态栏显示的通知文本提示
long when = System.currentTimeMillis(); //通知产生的时间,会在通知信息里显示
//用上面的属性初始化 Nofification
Notification notification = new Notification(icon,tickerText,when);
/*
* 添加声音
* notification.defaults |=Notification.DEFAULT_SOUND;
* 或者使用以下几种方式
* notification.sound = Uri.parse("file:///sdcard/notification/ringer.mp3");
* notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
* 如果想要让声音持续重复直到用户对通知做出反应,则可以在notification的flags字段增加"FLAG_INSISTENT"
* 如果notification的defaults字段包括了"DEFAULT_SOUND"属性,则这个属性将覆盖sound字段中定义的声音
*/
/*
* 添加振动
* notification.defaults |= Notification.DEFAULT_VIBRATE;
* 或者可以定义自己的振动模式:
* long[] vibrate = {0,100,200,300}; //0毫秒后开始振动,振动100毫秒后停止,再过200毫秒后再次振动300毫秒
* notification.vibrate = vibrate;
* long数组可以定义成想要的任何长度
* 如果notification的defaults字段包括了"DEFAULT_VIBRATE",则这个属性将覆盖vibrate字段中定义的振动
*/
/*
* 添加LED灯提醒
* notification.defaults |= Notification.DEFAULT_LIGHTS;
* 或者可以自己的LED提醒模式:
* notification.ledARGB = 0xff00ff00;
* notification.ledOnMS = 300; //亮的时间
* notification.ledOffMS = 1000; //灭的时间
* notification.flags |= Notification.FLAG_SHOW_LIGHTS;
*/
/*
* 更多的特征属性
* notification.flags |= FLAG_AUTO_CANCEL; //在通知栏上点击此通知后自动清除此通知
* notification.flags |= FLAG_INSISTENT; //重复发出声音,直到用户响应此通知
* notification.flags |= FLAG_ONGOING_EVENT; //将此通知放到通知栏的"Ongoing"即"正在运行"组中
* notification.flags |= FLAG_NO_CLEAR; //表明在点击了通知栏中的"清除通知"后,此通知不清除,
* //经常与FLAG_ONGOING_EVENT一起使用
* notification.number = 1; //number字段表示此通知代表的当前事件数量,它将覆盖在状态栏图标的顶部
* //如果要使用此字段,必须从1开始
* notification.iconLevel = ; //
*/
//设置通知的事件消息
Context context = getApplicationContext(); //上下文
CharSequence contentTitle = "My Notification"; //通知栏标题
CharSequence contentText = "Hello World!"; //通知栏内容
Intent notificationIntent = new Intent(this,Main.class); //点击该通知后要跳转的Activity
PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
//把Notification传递给 NotificationManager
mNotificationManager.notify(0,notification);
如果想要更新一个通知,只需要在设置好notification之后,再次调用 setLatestEventInfo(),然后重新发送一次通知即可,即再次调用notify()。
(2)、使用自定义的 Notification
要创建一个自定义的Notification,可以使用RemoteViews。要定义自己的扩展消息,首先 要初始化一个RemoteViews对象,然后将它传递给Notification的contentView字段,再把PendingIntent传递给 contentIntent字段。以下示例代码是完整步骤:
//1、创建一个自 定义的消息布局 view.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:id="@+id/image" android:layout_width="wrap_content"
android:layout_height="fill_parent" android:layout_marginRight="10dp" />
<TextView android:id="@+id/text" android:layout_width="wrap_content"
android:layout_height="fill_parent" android:textColor="#000" />
</LinearLayout>
//2、 在程序代码中使用RemoteViews的方法来定义image和text。然后把RemoteViews对象传到contentView字段
RemoteViews contentView = new RemoteViews(getPackageName(),R.layout.view);
contentView.setImageViewResource(R.id.image,R.drawable.icon);
contentView.setTextViewText(R.id.text,”Hello,this message is in a custom expanded view”);
notification.contentView = contentView;
//3、 为Notification的contentIntent字段定义一个Intent(注意,使用自定义View不需要 setLatestEventInfo()方法)
Intent notificationIntent = new Intent(this,Main.class);
PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
notification.contentIntent = contentIntent;
//4、发送通知
mNotificationManager.notify(2,notification);
// 以下是全部示例代码
//创建一个 NotificationManager的引用
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
// 定义Notification的各种属性
int icon = R.drawable.icon; //通知图标
CharSequence tickerText = "Hello"; //状态栏显示的通知文本提示
long when = System.currentTimeMillis(); //通知产生的时间,会在通知信息里显示
//用上面的属性初始化 Nofification
Notification notification = new Notification(icon,tickerText,when);
RemoteViews contentView = new RemoteViews(getPackageName(),R.layout.view);
contentView.setImageViewResource(R.id.image, R.drawable.iconempty);
contentView.setTextViewText(R.id.text, "Hello,this is JC");
notification.contentView = contentView;
Intent notificationIntent = new Intent(this,Main.class);
PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
notification.contentIntent = contentIntent;
//把Notification传递给NotificationManager
mNotificationManager.notify(0,notification);
此段代码择至: 点击打开链接
《=====


猜你喜欢

转载自blog.csdn.net/qq_35070105/article/details/71983882