91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android編程如何使用Service實現Notification定時發送功能

發布時間:2021-07-10 10:22:30 來源:億速云 閱讀:167 作者:小新 欄目:移動開發

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

具體如下:

/**
 * 通過啟動或停止服務來管理通知功能
 *
 * @description:
 * @date 2016-4-29 上午9:15:15
 */
public class NotifyControlActivity extends Activity {
  private Button notifyStart;// 啟動通知服務
  private Button notifyStop;// 停止通知服務
  @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對應Service
      startService(new Intent(NotifyControlActivity.this,
          NotifyingService.class));
    }
  };
  private OnClickListener mStopListener = new OnClickListener() {
    public void onClick(View v) {
      // 停止Notification對應Service
      stopService(new Intent(NotifyControlActivity.this,
          NotifyingService.class));
    }
  };
}
/**
 * 實現每5秒發一條狀態欄通知的Service
 *
 * @description:
 * @author ldm
 * @date 2016-4-29 上午9:16:20
 */
public class NotifyingService extends Service {
  // 狀態欄通知的管理類對象,負責發通知、清楚通知等
  private NotificationManager mNM;
  // 使用Layout文件的對應ID來作為通知的唯一識別
  private static int MOOD_NOTIFICATIONS = R.layout.status_bar_notifications;
  /**
   * Android給我們提供ConditionVariable類,用于線程同步。提供了三個方法block()、open()、close()。 void
   * block() 阻塞當前線程,直到條件為open 。 void block(long timeout)阻塞當前線程,直到條件為open或超時
   * void open()釋放所有阻塞的線程 void close() 將條件重置為close。
   */
  private ConditionVariable mCondition;
  @Override
  public void onCreate() {
    // 狀態欄通知的管理類對象,負責發通知、清楚通知等
    mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    // 啟動一個新個線程執行任務,因Service也是運行在主線程,不能用來執行耗時操作
    Thread notifyingThread = new Thread(null, mTask, "NotifyingService");
    mCondition = new ConditionVariable(false);
    notifyingThread.start();
  }
  @Override
  public void onDestroy() {
    // 取消通知功能
    mNM.cancel(MOOD_NOTIFICATIONS);
    // 停止線程進一步生成通知
    mCondition.open();
  }
  /**
   * 生成通知的線程任務
   */
  private Runnable mTask = new Runnable() {
    public void run() {
      for (int i = 0; i < 4; ++i) {
        // 生成帶stat_happy及status_bar_notifications_happy_message內容的通知
        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內容的通知
        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內容的通知
        showNotification(R.drawable.stat_sad,
            R.string.status_bar_notifications_sad_message);
        if (mCondition.block(5 * 1000))
          break;
      }
      // 完成通知功能,停止服務。
      NotifyingService.this.stopSelf();
    }
  };
  @Override
  public IBinder onBind(Intent intent) {
    return mBinder;
  }
  @SuppressWarnings("deprecation")
  private void showNotification(int moodId, int textId) {
    // 自定義一條通知內容
    CharSequence text = getText(textId);
    // 當點擊通知時通過PendingIntent來執行指定頁面跳轉或取消通知欄等消息操作
    Notification notification = new Notification(moodId, null,
        System.currentTimeMillis());
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
        new Intent(this, NotifyControlActivity.class), 0);
    // 在此處設置在nority列表里的該norifycation得顯示情況。
    notification.setLatestEventInfo(this,
        getText(R.string.status_bar_notifications_mood_title), text,
        contentIntent);
    /**
     * 注意,我們使用出來。incoming_message ID 通知。它可以是任何整數,但我們使用 資源id字符串相關
     * 通知。它將永遠是一個獨特的號碼在你的 應用程序。
     */
    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);
    }
  };
}
<?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:gravity="center_horizontal"
  android:orientation="vertical"
  android:padding="4dip" >
  <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0"
    android:paddingBottom="4dip"
    android:text="通過Service來實現對Notification的發送管理" />
  <Button
    android:id="@+id/notifyStart"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="啟動服務" >
    <requestFocus />
  </Button>
  <Button
    android:id="@+id/notifyStop"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="停止服務" >
  </Button>
</LinearLayout>

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宝坻区| 佳木斯市| 泸水县| 开封市| 乐业县| 五台县| 阿拉善右旗| 荆门市| 福建省| 阿克陶县| 沅江市| 梅河口市| 安塞县| 崇明县| 福海县| 金湖县| 内乡县| 和田县| 手游| 射阳县| 贵港市| 称多县| 交口县| 句容市| 措美县| 叶城县| 平定县| 通榆县| 辽宁省| 巢湖市| 永定县| 山东省| 安国市| 罗城| 大姚县| 松桃| 尉氏县| 株洲市| 工布江达县| 南昌县| 乐都县|