溫馨提示×

溫馨提示×

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

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

Android中怎么利用AlarmManager類實現鬧鐘功能

發(fā)布時間:2021-08-07 15:03:48 來源:億速云 閱讀:156 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關Android中怎么利用AlarmManager類實現鬧鐘功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

實現接收Alarm服務的AlarmReceiver類,該類比較簡單,在收到消息后用一個Toast來提示用戶,具體實現代碼如下:

public class AlarmReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) {  Toast.makeText(context, "您設置的時間到了!",   Toast.LENGTH_SHORT).show(); }}

由于使用了BroadcastReceiver,因此我們需要在AndroidManifest.xml文件中對其進行聲明,如下:

<receiver android:name=".AlarmReceiver" android:process=":remote" />

接下來,在MainActivity中我們實現“設置鬧鐘”和“取消鬧鐘”的事件監(jiān)聽,讓我們來看一下具體實現代碼:

public class MainActivity extends Activity { private Button btnSet, btnCancel; private TextView info; private Calendar calendar; @Override protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  btnSet = (Button) findViewById(R.id.setalarm);  btnCancel = (Button) findViewById(R.id.cancelalarm);  info = (TextView) findViewById(R.id.info);  calendar = Calendar.getInstance();  btnSet.setOnClickListener(new OnClickListener() {   @Override   public void onClick(View v) {    // TODO Auto-generated method stub    calendar.setTimeInMillis(System.currentTimeMillis());    int mHour = calendar.get(Calendar.HOUR_OF_DAY);    int mMinute = calendar.get(Calendar.MINUTE);    new TimePickerDialog(MainActivity.this,      new TimePickerDialog.OnTimeSetListener() {       @Override       public void onTimeSet(TimePicker view,         int hourOfDay, int minute) {        // TODO Auto-generated method stub        calendar.setTimeInMillis(System.currentTimeMillis());        calendar.set(Calendar.HOUR_OF_DAY, hourOfDay);        calendar.set(Calendar.MINUTE, minute);        calendar.set(Calendar.SECOND, 0);        calendar.set(Calendar.MILLISECOND, 0);        // 建立Intent和PendingIntent來調用目標組件        Intent intent = new Intent(MainActivity.this, AlarmReceiver.class);        PendingIntent pendingIntent = PendingIntent.getBroadcast(MainActivity.this, 0, intent, 0);        // 獲取鬧鐘管理的實例        AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);        // 設置鬧鐘        am.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent);        // 設置周期鬧鐘        am.setRepeating(AlarmManager.RTC_WAKEUP,          System.currentTimeMillis() + (10 * 1000),          (24 * 60 * 60 * 1000), pendingIntent);        String tmpS = "設置鬧鐘時間為" + format(hourOfDay)          + ":" + format(minute);        info.setText(tmpS);       }      }, mHour, mMinute, true).show();   }  });  btnCancel.setOnClickListener(new OnClickListener() {   @Override   public void onClick(View v) {    // TODO Auto-generated method stub    Intent intent = new Intent(MainActivity.this,      AlarmReceiver.class);    PendingIntent pendingIntent = PendingIntent.getBroadcast(      MainActivity.this, 0, intent, 0);    // 獲取鬧鐘管理實例    AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);    // 取消    am.cancel(pendingIntent);    info.setText("鬧鐘已經取消");   }  }); } // 格式化字符串7:3-->07:03 private String format(int x) {  String s = "" + x;  if (s.length() == 1) {   s = "0" + s;  }  return s; } @Override public boolean onCreateOptionsMenu(Menu menu) {  // Inflate the menu; this adds items to the action bar if it is present.  getMenuInflater().inflate(R.menu.activity_main, menu);  return true; }}

在上述代碼中我們使用了PendingIntent,PendingIntent這個類用于處理即將發(fā)生的事情,PendingIntent可以看作是對Intent的包裝,通常通過getActivity、getBroadcast、getService來得到PendingIntent的實例,當前Activity并不能馬上啟動它所包含的Intent,而是在外部執(zhí)行PendingIntent時,調用Intent。正是由于PendingIntent中保存有當前App的context,使它賦予外部App一種能力,使得外部App可以如同當前App一樣的執(zhí)行PendingIntent里的Intent,就算在執(zhí)行時當前App已經不存在了,也能通過保存在PendingIntent里的Context照樣執(zhí)行Intent,另外還可以處理Intent執(zhí)行后的操作。常和AlarmManager和NotificationManager一起使用。

看完上述內容,你們對Android中怎么利用AlarmManager類實現鬧鐘功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

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

AI