真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android編程如何使用Service實現(xiàn)Notification定時發(fā)送功能

這篇文章將為大家詳細講解有關(guān)Android編程如何使用Service實現(xiàn)Notification定時發(fā)送功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

站在用戶的角度思考問題,與客戶深入溝通,找到尖山網(wǎng)站設(shè)計與尖山網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站制作、成都網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名申請、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋尖山地區(qū)。

具體如下:

/**
 * 通過啟動或停止服務(wù)來管理通知功能
 *
 * @description:
 * @date 2016-4-29 上午9:15:15
 */
public class NotifyControlActivity extends Activity {
  private Button notifyStart;// 啟動通知服務(wù)
  private Button notifyStop;// 停止通知服務(wù)
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.notifying_controller);
    initWidgets();
  }
  private void initWidgets() {
    notifyStart = (Button) findViewById(R.id.notifyStart);
    notifyStart.setOnClickListener(mStartListener);
    notifyStop = (Button) findViewById(R.id.notifyStop);
    notifyStop.setOnClickListener(mStopListener);
  }
  private OnClickListener mStartListener = new OnClickListener() {
    public void onClick(View v) {
      // 啟動Notification對應(yīng)Service
      startService(new Intent(NotifyControlActivity.this,
          NotifyingService.class));
    }
  };
  private OnClickListener mStopListener = new OnClickListener() {
    public void onClick(View v) {
      // 停止Notification對應(yīng)Service
      stopService(new Intent(NotifyControlActivity.this,
          NotifyingService.class));
    }
  };
}
/**
 * 實現(xiàn)每5秒發(fā)一條狀態(tài)欄通知的Service
 *
 * @description:
 * @author ldm
 * @date 2016-4-29 上午9:16:20
 */
public class NotifyingService extends Service {
  // 狀態(tài)欄通知的管理類對象,負(fù)責(zé)發(fā)通知、清楚通知等
  private NotificationManager mNM;
  // 使用Layout文件的對應(yīng)ID來作為通知的唯一識別
  private static int MOOD_NOTIFICATIONS = R.layout.status_bar_notifications;
  /**
   * Android給我們提供ConditionVariable類,用于線程同步。提供了三個方法block()、open()、close()。 void
   * block() 阻塞當(dāng)前線程,直到條件為open 。 void block(long timeout)阻塞當(dāng)前線程,直到條件為open或超時
   * void open()釋放所有阻塞的線程 void close() 將條件重置為close。
   */
  private ConditionVariable mCondition;
  @Override
  public void onCreate() {
    // 狀態(tài)欄通知的管理類對象,負(fù)責(zé)發(fā)通知、清楚通知等
    mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    // 啟動一個新個線程執(zhí)行任務(wù),因Service也是運行在主線程,不能用來執(zhí)行耗時操作
    Thread notifyingThread = new Thread(null, mTask, "NotifyingService");
    mCondition = new ConditionVariable(false);
    notifyingThread.start();
  }
  @Override
  public void onDestroy() {
    // 取消通知功能
    mNM.cancel(MOOD_NOTIFICATIONS);
    // 停止線程進一步生成通知
    mCondition.open();
  }
  /**
   * 生成通知的線程任務(wù)
   */
  private Runnable mTask = new Runnable() {
    public void run() {
      for (int i = 0; i < 4; ++i) {
        // 生成帶stat_happy及status_bar_notifications_happy_message內(nèi)容的通知
        showNotification(R.drawable.stat_happy,
            R.string.status_bar_notifications_happy_message);
        if (mCondition.block(5 * 1000))
          break;
        // 生成帶stat_neutral及status_bar_notifications_ok_message內(nèi)容的通知
        showNotification(R.drawable.stat_neutral,
            R.string.status_bar_notifications_ok_message);
        if (mCondition.block(5 * 1000))
          break;
        // 生成帶stat_sad及status_bar_notifications_sad_message內(nèi)容的通知
        showNotification(R.drawable.stat_sad,
            R.string.status_bar_notifications_sad_message);
        if (mCondition.block(5 * 1000))
          break;
      }
      // 完成通知功能,停止服務(wù)。
      NotifyingService.this.stopSelf();
    }
  };
  @Override
  public IBinder onBind(Intent intent) {
    return mBinder;
  }
  @SuppressWarnings("deprecation")
  private void showNotification(int moodId, int textId) {
    // 自定義一條通知內(nèi)容
    CharSequence text = getText(textId);
    // 當(dāng)點擊通知時通過PendingIntent來執(zhí)行指定頁面跳轉(zhuǎn)或取消通知欄等消息操作
    Notification notification = new Notification(moodId, null,
        System.currentTimeMillis());
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
        new Intent(this, NotifyControlActivity.class), 0);
    // 在此處設(shè)置在nority列表里的該norifycation得顯示情況。
    notification.setLatestEventInfo(this,
        getText(R.string.status_bar_notifications_mood_title), text,
        contentIntent);
    /**
     * 注意,我們使用出來。incoming_message ID 通知。它可以是任何整數(shù),但我們使用 資源id字符串相關(guān)
     * 通知。它將永遠是一個獨特的號碼在你的 應(yīng)用程序。
     */
    mNM.notify(MOOD_NOTIFICATIONS, notification);
  }
  // 這是接收來自客戶端的交互的對象. See
  private final IBinder mBinder = new Binder() {
    @Override
    protected boolean onTransact(int code, Parcel data, Parcel reply,
        int flags) throws RemoteException {
      return super.onTransact(code, data, reply, flags);
    }
  };
}


  
  
  

關(guān)于“Android編程如何使用Service實現(xiàn)Notification定時發(fā)送功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


分享名稱:Android編程如何使用Service實現(xiàn)Notification定時發(fā)送功能
文章鏈接:http://weahome.cn/article/jdcogs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部