Android的Notifation

目录结构:
目录结构.png

MainActivity

package com.example.matsonga.notification;

import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.support.v4.app.NotificationCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Button button = (Button) findViewById(R.id.btn_notifi);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                sendNitifitiopn();
            }
        });
    }
    
    private void sendNitifitiopn() {

        //点击通知要跳转的activity
//        Intent intent1 = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com"));

        Intent intent = new Intent(MainActivity.this,NotifitonAC.class);
        // 等待的,未决定的Intent。

        /* paddingInent
           getActivity (Context, int, Intent, int)  ------> 跳转到一个activity组件、
        getBroadcast(Context, int, Intent, int)  ------> 打开一个广播组件
        getService  (Context, int, Intent, int)  ------> 打开一个服务组件
         */
         //                                                                 上下文                     使用的intent  表示位
        PendingIntent pendingIntent = PendingIntent.getActivity(
                                                                MainActivity.this,
                                                                0,
                                                                 intent,
                                                                0);

        NotificationManager manager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

        if (Build.VERSION.SDK_INT >= 26) {
            //当sdk版本大于26
            String id          = "channel_1";
            String description = "143";
            int    importance  = NotificationManager.IMPORTANCE_LOW;

            NotificationChannel channel = new NotificationChannel(id, description, importance);
//                     channel.enableLights(true);
//                     channel.enableVibration(true);//
            manager.createNotificationChannel(channel);

            Notification notification = new Notification.Builder(MainActivity.this, id)
                    //设置通知类别
                    .setCategory(Notification.CATEGORY_MESSAGE)
                    .setSmallIcon(R.mipmap.cc)
                    .setContentTitle("这是一个推送标题")
                    .setContentText("推送内容,推送内容,推送内容,推送内容")
                    .setContentIntent(pendingIntent)
                    // 将AutoCancel设为true后,当你点击通知栏的notification后,它会自动被取消消失
                    .setAutoCancel(true)
                    // 通过 builder.build() 方法生成 Notification 对象,并发送通知
                    .build();

            // 把notification发送到状态条
            manager.notify(1, notification);

        } else {
            //当sdk版本小于26
            Notification notification = new NotificationCompat.Builder(MainActivity.this)
                    .setContentTitle("这是一个推送标题")
                    .setContentText("推送内容,推送内容,推送内容,推送内容")
                    .setContentIntent(pendingIntent)
                    .setSmallIcon(R.mipmap.cc)
                    .build();
            manager.notify(1, notification);
        }
    }
    /*
     * 添加声音
     * 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 = ; //
     */

}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/btn_notifi"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="状态栏信息"/>

</LinearLayout>

NotifitonAC

package com.example.matsonga.notification;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class NotifitonAC extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_notifiton_ac);
    }
}

activity_notifiton_ac.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".NotifitonAC">
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="satoshi_uma是天才!"/>
</android.support.constraint.ConstraintLayout>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 218,525评论 6 507
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 93,203评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 164,862评论 0 354
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,728评论 1 294
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,743评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,590评论 1 305
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,330评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,244评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,693评论 1 314
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,885评论 3 336
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 40,001评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,723评论 5 346
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,343评论 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,919评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,042评论 1 270
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,191评论 3 370
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,955评论 2 355