2020-06-20

import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.NotificationCompat;

import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.os.Build;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.RemoteViews;

public class MainActivity extends AppCompatActivity {
private NotificationManager notificationManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button sendButton = findViewById(R.id.send_notice);
Button removeButton = findViewById(R.id.remove_notice);
notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Notification notification = createForegroundNotification();
notificationManager.notify(123, notification);
}
});
removeButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Notification notification = createForegroundNotification();
notificationManager.cancel(123);
}
});
}

private Notification createForegroundNotification() {
    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    // 唯一的通知通道的id.
    String notificationChannelId = "notification_channel_id_01";

    // 新建消息通道
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        //用戶(hù)可見(jiàn)的通道名稱(chēng)
        String channelName = "Foreground Service Notification";
        //通道的重要程度
        int importance = NotificationManager.IMPORTANCE_HIGH;
        NotificationChannel notificationChannel = new NotificationChannel(notificationChannelId, channelName, importance);
        notificationChannel.setDescription("Channel description");
        //LED燈
        notificationChannel.enableLights(true);
        notificationChannel.setLightColor(Color.RED);
        //震動(dòng)
        notificationChannel.setVibrationPattern(new long[]{0, 1000, 500, 1000});
        notificationChannel.enableVibration(true);
        if (notificationManager != null) {
            notificationManager.createNotificationChannel(notificationChannel);
        }
    }

    NotificationCompat.Builder builder = new NotificationCompat.Builder(this, notificationChannelId);
    //通知小圖標(biāo)
    builder.setSmallIcon(R.drawable.ic_launcher_foreground);
    //通知標(biāo)題
    builder.setContentTitle("前臺(tái)服務(wù)");
    //通知內(nèi)容
    builder.setContentText("前臺(tái)服務(wù)正在運(yùn)行");
    //設(shè)定通知顯示的時(shí)間
    builder.setWhen(System.currentTimeMillis());
    //設(shè)定啟動(dòng)的內(nèi)容
    Intent activityIntent = new Intent(this, NotificationActivity.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 1, activityIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    builder.setContentIntent(pendingIntent);
    //添加按鈕點(diǎn)擊事件
    builder.addAction(R.mipmap.ic_launcher,"按鈕",pendingIntent);

    //創(chuàng)建通知并返回
    return builder.build();
}

// private void showNotification(String ticker, String contentTitle, String contentText) {
// Notification notification;
// Intent it = new Intent(this, NotificationActivity.class);
// //(Context對(duì)象薪介,Intent的id楞遏,Intent對(duì)象李根,對(duì)Intent的更新方式)
// //FLAG_UPDATE_CURRENT表示不銷(xiāo)毀原來(lái)的PendingIntent,直接替換其中的Intent內(nèi)容
// //FLAG_CANCEL_CURRENT表示取消當(dāng)前的PendingIntent风科,重新創(chuàng)建新的PendingIntent對(duì)象
// PendingIntent pIntent = PendingIntent.getActivity(this, 0, it, PendingIntent.FLAG_UPDATE_CURRENT);
// //創(chuàng)建一個(gè)遠(yuǎn)程視圖管理
// RemoteViews contentView = new RemoteViews(getApplication().getPackageName(), R.layout.notification_layout);
// contentView.setTextViewText(R.id.n_title, contentTitle);
// contentView.setTextViewText(R.id.n_content, contentText);//設(shè)置文本框中顯示的文本內(nèi)容
// contentView.setImageViewResource(R.id.n_icon, R.drawable.ic_launcher_background);//設(shè)置圖片視圖
// //設(shè)置自定義布局中的點(diǎn)擊監(jiān)聽(tīng)
// //關(guān)閉的Intent,MusicService 進(jìn)入onStartCommand中
// Intent closeIntent = new Intent(this, NotificationActivity.class);
// closeIntent.putExtra("oop", 1);
// PendingIntent closePdIntent = PendingIntent.getService(this, 2, closeIntent, PendingIntent.FLAG_UPDATE_CURRENT);
// contentView.setOnClickPendingIntent(R.id.n_close, closePdIntent);
//
// if (Build.VERSION.SDK_INT >= 16) {
// Notification.Builder builder = new Notification.Builder(this);
// //顯示在狀態(tài)欄上的小圖標(biāo)
// builder.setSmallIcon(R.drawable.ic_launcher_background);
// //顯示在狀態(tài)欄上的提示文本(顯示一段時(shí)間消失)
// builder.setTicker(ticker);
//// //下拉看到的內(nèi)容標(biāo)題和文本
//// builder.setContentTitle(contentTitle);
//// builder.setContentText(contentText);
//// //通知時(shí)間
//// builder.setWhen(System.currentTimeMillis());
// builder.setContent(contentView);
// //如果點(diǎn)擊了內(nèi)容部分,跳轉(zhuǎn)到Activity01界面
// builder.setContentIntent(pIntent);
// //創(chuàng)建通知
// notification = builder.build();
// } else {
// notification = new Notification(R.drawable.timg, ticker, System.currentTimeMillis());
// notification.contentIntent = pIntent;
// notification.contentView = contentView;
// }
// //自動(dòng)取消(當(dāng)通知被點(diǎn)擊時(shí),系統(tǒng)會(huì)移除通知)
// notification.flags = notification.FLAG_AUTO_CANCEL;
// notification.defaults = Notification.DEFAULT_ALL;
// // 顯示通知
// .notify(333, notification);
// }

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末穿剖,一起剝皮案震驚了整個(gè)濱河市冬竟,隨后出現(xiàn)的幾起案子欧穴,更是在濱河造成了極大的恐慌,老刑警劉巖泵殴,帶你破解...
    沈念sama閱讀 216,651評(píng)論 6 501
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件涮帘,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡笑诅,警方通過(guò)查閱死者的電腦和手機(jī)调缨,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,468評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)吆你,“玉大人弦叶,你說(shuō)我怎么就攤上這事「径啵” “怎么了伤哺?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,931評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)者祖。 經(jīng)常有香客問(wèn)我立莉,道長(zhǎng),這世上最難降的妖魔是什么咸包? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,218評(píng)論 1 292
  • 正文 為了忘掉前任桃序,我火速辦了婚禮,結(jié)果婚禮上烂瘫,老公的妹妹穿的比我還像新娘媒熊。我一直安慰自己,他們只是感情好坟比,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,234評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布芦鳍。 她就那樣靜靜地躺著,像睡著了一般葛账。 火紅的嫁衣襯著肌膚如雪柠衅。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,198評(píng)論 1 299
  • 那天籍琳,我揣著相機(jī)與錄音菲宴,去河邊找鬼。 笑死趋急,一個(gè)胖子當(dāng)著我的面吹牛喝峦,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播呜达,決...
    沈念sama閱讀 40,084評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼谣蠢,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起眉踱,我...
    開(kāi)封第一講書(shū)人閱讀 38,926評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤挤忙,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后谈喳,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體册烈,經(jīng)...
    沈念sama閱讀 45,341評(píng)論 1 311
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,563評(píng)論 2 333
  • 正文 我和宋清朗相戀三年叁执,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了茄厘。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,731評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡谈宛,死狀恐怖次哈,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情吆录,我是刑警寧澤窑滞,帶...
    沈念sama閱讀 35,430評(píng)論 5 343
  • 正文 年R本政府宣布,位于F島的核電站恢筝,受9級(jí)特大地震影響哀卫,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜撬槽,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,036評(píng)論 3 326
  • 文/蒙蒙 一此改、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧侄柔,春花似錦共啃、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,676評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至薪者,卻和暖如春纵苛,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背言津。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,829評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工攻人, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人悬槽。 一個(gè)月前我還...
    沈念sama閱讀 47,743評(píng)論 2 368
  • 正文 我出身青樓贝椿,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親陷谱。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,629評(píng)論 2 354