我想通知告訴我,我的CountDownTimer
已結束,但即時通訊有一些麻煩。目前,我已經建立了一個測試通知(我認爲)但我不知道如何呼叫通知工作。以下是我目前所面對的:CountDownTimer結束通知
public void onFinish() {
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(TestTimer.this);
mBuilder.setContentTitle("Notification Alert, Click Me!");
mBuilder.setContentText("Hi, This is Android Notification Detail!");
TextView timer=(TextView)findViewById(R.id.mTextField);
timer.setText("Seconds remaining: 0 ")
這被稱爲一旦定時器= 0,我想知道,如果它可以調用的時候它的通知。
在此先感謝您的幫助,如果您需要更多代碼,請隨時詢問。
建設者需要一個'PendingIntent'通過'setContentIntent'設置,然後使用'NotificationManager'的'notify'方法來發送通知。 –