notification是顯示在手機(jī)狀態(tài)欄的通知

notification是顯示在手機(jī)狀態(tài)欄的通知燥滑,手機(jī)狀態(tài)欄位于手機(jī)最上方,一般顯示手機(jī)當(dāng)前網(wǎng)絡(luò)狀態(tài)阿逃,電池狀態(tài)铭拧,實(shí)際等,notification所代表的是一種具有全局效果的通知

package com.example.check;

import android.support.v7.app.ActionBarActivity;

import android.support.v7.app.ActionBar;

import android.support.v4.app.Fragment;

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.LayoutInflater;

import android.view.Menu;

import android.view.MenuItem;

import android.view.View;

import android.view.ViewGroup;

import android.os.Build;

public class MainActivity extends Activity {

? ? ? ? ? static final int NOTIFICATION_ID = 0x123;

? ? ? ? ? ? private NotificationManager nm;

? ? ? ? ? ? @Override

? ? ? ? ? ? protected void onCreate(Bundle savedInstanceState) {

? ? ? ? ? ? ? ? super.onCreate(savedInstanceState);

? ? ? ? ? ? ? ? setContentView(R.layout.notification);

? ? ? ? ? ? ? ? //獲取系統(tǒng)的NotificationManager服務(wù)

? ? ? ? ? ? ? ? nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

? ? ? ? ? ? }

? ? ? ? ? ? //為發(fā)送通知的按鈕點(diǎn)擊事件定義處理方法

? ? ? ? ? ? public void send(View source) {

? ? ? ? ? ? ? ? //創(chuàng)建一個啟動其他activity的intent

? ? ? ? ? ? ? ? Intent it = new Intent(MainActivity.this, OtherActivity.class);

? ? ? ? ? ? ? ? PendingIntent pi = PendingIntent.getActivity(MainActivity.this, 0, it, 0);

? ? ? ? ? ? ? ? Notification nf = new Notification.Builder(this)

? ? ? ? ? ? ? ? ? ? ? ? //設(shè)置打開改通知恃锉,該通知自動消失

? ? ? ? ? ? ? ? ? ? ? ? .setAutoCancel(true)

? ? ? ? ? ? ? ? ? ? ? ? //設(shè)置顯示在狀態(tài)欄的通知提示信息

? ? ? ? ? ? ? ? ? ? ? ? .setTicker("您有新的消息")

? ? ? ? ? ? ? ? ? ? ? ? //設(shè)置通知的圖標(biāo)

? ? ? ? ? ? ? ? ? ? ? ? .setSmallIcon(R.drawable.mia5)

? ? ? ? ? ? ? ? ? ? ? ? //設(shè)置通知內(nèi)容標(biāo)題

? ? ? ? ? ? ? ? ? ? ? ? .setContentTitle("一條新通知")

? ? ? ? ? ? ? ? ? ? ? ? //設(shè)置通知內(nèi)容

? ? ? ? ? ? ? ? ? ? ? ? .setContentText("恭喜您搀菩,您被黃山學(xué)院,漢語言文學(xué)專業(yè)錄取了")

? ? ? ? ? ? ? ? ? ? ? ? //設(shè)置使用系統(tǒng)默認(rèn)的聲音破托,默認(rèn)的led燈

? ? ? ? ? ? ? ? ? ? ? ? .setDefaults(Notification.DEFAULT_SOUND)

? ? ? ? ? ? ? ? ? ? ? ? //設(shè)置通知的自定義聲音 .setSound(Uri.parse("android.resource://org.crazyit.ui/"+R.raw.msg))

? ? ? ? ? ? ? ? ? ? ? // .setWhen(System.currentTimeMillis())

? ? ? ? ? ? ? ? ? ? ? ? //設(shè)置通知將要啟動程序的intent

? ? ? ? ? ? ? ? ? ? ? ? .setContentIntent(pi)

? ? ? ? ? ? ? ? ? ? ? ? .build();

? ? ? ? ? ? ? ? //發(fā)送通知

? ? ? ? ? ? ? ? nm.notify(NOTIFICATION_ID, nf);

? ? ? ? ? ? }

? ? ? ? ? ? //為刪除通知的按鈕的點(diǎn)擊事件定義事件處理方法

? ? ? ? ? ? public void del(View V) {

? ? ? ? ? ? ? ? //取消通知

? ? ? ? ? ? ? ? nm.cancel(NOTIFICATION_ID);

? ? ? ? ? ? }

? ? ? ? }

package com.example.check;

import android.app.Activity;

import android.os.Bundle;

public class OtherActivity? extends Activity {

? ? @Override

? ? protected void onCreate(Bundle savedInstanceState) {

? ? ? ? super.onCreate(savedInstanceState);

? ? ? ? setContentView(R.layout.activity_other);

? ? }

}

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

? ? android:layout_width="match_parent"

? ? android:layout_height="match_parent"

? ? android:orientation="vertical">

<TextView

? ? android:layout_width="match_parent"

? ? android:layout_height="wrap_content"

? ? android:text="mia你是最棒的,愿我們頂峰相見肪跋,加油"/>

<ImageView

? ? android:layout_width="wrap_content"

? ? android:layout_height="wrap_content"

? ? android:src="@drawable/mia10"/>

</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

? ? android:layout_width="match_parent"

? ? android:layout_height="match_parent"

? ? android:orientation="vertical">

? ? <Button

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="wrap_content"

? ? ? ? android:onClick="send"

? ? ? ? android:text="返回"/>

? ? <Button

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="wrap_content"

? ? ? ? android:onClick="del"

? ? ? ? android:text="關(guān)閉"/>

</LinearLayout>



?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市土砂,隨后出現(xiàn)的幾起案子州既,更是在濱河造成了極大的恐慌谜洽,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件吴叶,死亡現(xiàn)場離奇詭異阐虚,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)蚌卤,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進(jìn)店門实束,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人逊彭,你說我怎么就攤上這事咸灿。” “怎么了侮叮?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵析显,是天一觀的道長。 經(jīng)常有香客問我签赃,道長,這世上最難降的妖魔是什么分尸? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任锦聊,我火速辦了婚禮,結(jié)果婚禮上箩绍,老公的妹妹穿的比我還像新娘孔庭。我一直安慰自己,他們只是感情好材蛛,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布圆到。 她就那樣靜靜地躺著,像睡著了一般卑吭。 火紅的嫁衣襯著肌膚如雪芽淡。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天豆赏,我揣著相機(jī)與錄音挣菲,去河邊找鬼。 笑死掷邦,一個胖子當(dāng)著我的面吹牛白胀,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播抚岗,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼或杠,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了宣蔚?” 一聲冷哼從身側(cè)響起向抢,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤认境,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后笋额,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體元暴,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年兄猩,在試婚紗的時候發(fā)現(xiàn)自己被綠了茉盏。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡枢冤,死狀恐怖鸠姨,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情淹真,我是刑警寧澤讶迁,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站核蘸,受9級特大地震影響巍糯,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜客扎,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一祟峦、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧徙鱼,春花似錦宅楞、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至绞绒,卻和暖如春婶希,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蓬衡。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工饲趋, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人撤蟆。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓奕塑,卻偏偏與公主長得像,于是被迫代替她去往敵國和親家肯。 傳聞我的和親對象是個殘疾皇子龄砰,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內(nèi)容