首頁(yè) 收藏 QQ群
 網(wǎng)站導(dǎo)航

ZNDS智能電視網(wǎng) 推薦當(dāng)貝市場(chǎng)

TV應(yīng)用下載 / 資源分享區(qū)

軟件下載 | 游戲 | 討論 | 電視計(jì)算器

綜合交流 / 評(píng)測(cè) / 活動(dòng)區(qū)

交流區(qū) | 測(cè)硬件 | 網(wǎng)站活動(dòng) | Z幣中心

新手入門 / 進(jìn)階 / 社區(qū)互助

新手 | 你問(wèn)我答 | 免費(fèi)刷機(jī)救磚 | ROM固件

查看: 12182|回復(fù): 0
上一主題 下一主題
[教程]

AlarmManager的使用

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
發(fā)表于 2013-8-28 16:30 | 只看該作者 回帖獎(jiǎng)勵(lì) |倒序?yàn)g覽 |閱讀模式
5AlarmManager--全局定時(shí)器   
   
(1)在指定時(shí)長(zhǎng)后執(zhí)行某項(xiàng)操作   
   
// 發(fā)送一個(gè)廣播,廣播接收后Toast提示定時(shí)操作完成   
Intent intent =newIntent(Main.this, alarmreceiver.class);      
intent.setAction(
"short");      
PendingIntent sender
=PendingIntent.getBroadcast(Main.this, 0, intent, 0);           
// 設(shè)定一個(gè)五秒后的時(shí)間   
Calendar calendar=Calendar.getInstance();      
calendar.setTimeInMillis(System.currentTimeMillis());      
calendar.add(Calendar.SECOND,
5);        AlarmManager alarm=(AlarmManager)getSystemService(ALARM_SERVICE);      
alarm.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), sender);   
   
Toast.makeText(Main.this, "五秒后alarm開啟", Toast.LENGTH_LONG).show();   
   
(2)周期性的執(zhí)行某項(xiàng)操作   
   
Intent intent =newIntent(Main.this, alarmreceiver.class);      
intent.setAction(
"repeating");      
PendingIntent  sender
=PendingIntent        .getBroadcast(Main.this, 0, intent, 0);       
    //開始時(shí)間       
long firstime=SystemClock.elapsedRealtime();   
AlarmManager am=(AlarmManager)getSystemService(ALARM_SERVICE);   
//5秒一個(gè)周期,不停的發(fā)送廣播    am.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, firstime, 5*1000, sender);   
   
   
   
   
   
//注意:receiver記得在manifest.xml注冊(cè)
   
public static class alarmreceiver extends BroadcastReceiver{           
@Override           
public void onReceive(Context context, Intent intent) {               
// TODO Auto-generated method stub   
if   
(intent.getAction().equals("short")){   
Toast.makeText(context,
"short alarm",Toast.LENGTH_LONG).show();               
}
else{                  
Toast.makeText(context,
"repeating alarm", Toast.LENGTH_LONG).show();   
}   
}   
}   
   
AlarmManager的取消:(其中需要注意的是取消的Intent必須與啟動(dòng)Intent保持絕對(duì)一致才能支持取消AlarmManager)   
   
Intent intent =new Intent(Main.this, alarmreceiver.class);      
intent.setAction(
"repeating");      
PendingIntent sender
=PendingIntent.getBroadcast(Main.this, 0, intent, 0);      
AlarmManager alarm
=(AlarmManager)getSystemService(ALARM_SERVICE);      
alarm.cancel(sender);
   
   

上一篇:實(shí)戰(zhàn)Service BroadcastReceiver與AlarmManager
下一篇:深入學(xué)習(xí)android之AlarmManager

本版積分規(guī)則

Archiver|新帖|標(biāo)簽|軟件|Sitemap|ZNDS智能電視網(wǎng) ( 蘇ICP備2023012627號(hào) )

網(wǎng)絡(luò)信息服務(wù)信用承諾書 | 增值電信業(yè)務(wù)經(jīng)營(yíng)許可證:蘇B2-20221768 丨 蘇公網(wǎng)安備 32011402011373號(hào)

GMT+8, 2025-1-3 09:56 , Processed in 0.057709 second(s), 17 queries , Redis On.

Powered by Discuz!

監(jiān)督舉報(bào):report#znds.com (請(qǐng)將#替換為@)

© 2007-2024 ZNDS.Com

快速回復(fù) 返回頂部 返回列表