Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android開發之使用通知欄顯示提醒信息的方法

Android開發之使用通知欄顯示提醒信息的方法

編輯:關於Android編程

本文實例講述了Android開發之使用通知欄顯示提醒信息的方法。分享給大家供大家參考,具體如下:

用通知欄來提醒

public void notifyKJ() {
 //獲得通知管理器,通知是一項系統服務
 NotificationManager manager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
 //初始化通知對象 p1:通知的圖標 p2:通知的狀態欄顯示的提示 p3:通知顯示的時間
 Notification notification = new Notification(R.drawable.kjalarm, "提醒", System.currentTimeMillis());
 //點擊通知後的Intent,此例子點擊後還是在當前界面
 Intent descIntent = new Intent(context, com.acp.main.DesktopUI.class);
 descIntent.putExtra(DesktopUI.requestCode,DesktopUI.KJ);
 PendingIntent intent = PendingIntent.getActivity(context, 0, descIntent, 0);
 //設置通知信息
 notification.setLatestEventInfo(context, "提醒", "祝您天天快樂", intent);
 notification.flags|=Notification.FLAG_AUTO_CANCEL; //當查看後,自動消失
 notification.defaults |= Notification.DEFAULT_SOUND;//默認聲音提示
 //通知
 manager.notify(NOTICE_ID, notification);
}

自動跳轉到網絡設置界面
復制代碼 代碼如下:context.startActivityForResult(new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS),0);

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved