亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android中通知欄跳動(dòng)問(wèn)題解決方法

 更新時(shí)間:2015年01月19日 08:57:08   投稿:junjie  
這篇文章主要介紹了Android中通知欄跳動(dòng)問(wèn)題解決方法,導(dǎo)致這個(gè)問(wèn)題的原因是when這個(gè)屬性值,默認(rèn)它是使用的系統(tǒng)當(dāng)前時(shí)間,這就是導(dǎo)致跳動(dòng)問(wèn)題的原因,指定一個(gè)固定時(shí)間即可解決這個(gè)問(wèn)題,需要的朋友可以參考下

曾經(jīng)遇到過(guò)這樣的問(wèn)題,在我的代碼中使用了通知欄,一切都正常,但是就是正在進(jìn)行的通知欄中屬于我的程序的那一條總是上下跳來(lái)跳去,一閃一閃的。感覺(jué)用戶體驗(yàn)很不好,于是Google一下,找到了解決方法。

在我的代碼,我是這樣寫(xiě)的。

復(fù)制代碼 代碼如下:

notification.when = System.currentTimeMillis();

這就是問(wèn)題的關(guān)鍵,對(duì)于通知來(lái)說(shuō),when這個(gè)屬性值應(yīng)該在activity一啟動(dòng)的時(shí)候就應(yīng)該固定。如果沒(méi)有固定,就會(huì)使用默認(rèn)的值,默認(rèn)的值就是當(dāng)前的時(shí)間,即System.currentTimeMillis()的值。因此使用一個(gè)自定義的固定值就可以解決問(wèn)題。

復(fù)制代碼 代碼如下:

final long TIMESTAMP_FIXED = 1234567890l;
notification.when = TIMESTAMP_FIXED;

以下如Google介紹如何使用notification的when的說(shuō)明。

復(fù)制代碼 代碼如下:

A timestamp related to this notification, in milliseconds since the epoch. Default value: Now. Choose a timestamp that will be most relevant to the user. For most finite events, this corresponds to the time the event happened (or will happen, in the case of events that have yet to occur but about which the user is being informed). Indefinite events should be timestamped according to when the activity began. Some examples:

Notification of a new chat message should be stamped when the message was received.
Notification of an ongoing file download (with a progress bar, for example) should be stamped when the download started.
Notification of a completed file download should be stamped when the download finished.
Notification of an upcoming meeting should be stamped with the time the meeting will begin (that is, in the future).
Notification of an ongoing stopwatch (increasing timer) should be stamped with the watch's start time.
Notification of an ongoing countdown timer should be stamped with the timer's end time.

Reference

http://developer.android.com/reference/android/app/Notification.html#when

相關(guān)文章

最新評(píng)論