在android下實現定製鬧鐘

來源:互聯網
上載者:User

鬧鐘是我們生活中常用的工具。在android系統中提供了強大的鬧鐘介面,並且使用起來也非常簡單。AlarmManager是android提供的鬧鈴管理介面。我們想建立一個鬧鈴程式就需要通過它來完成。那麼接下來就看一下建立鬧鐘的過程:

1. 擷取AlarmManager對象

AlarmManager am = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

在android中擷取系統服務的方式就是getSystemService(ServiceCode)。

2. 為AlarmManager建立一個receiver類,這個類是用來接收廣播的鬧鈴事件的,我們也可以看作是鬧鈴的處理常式吧。

public class AlarmReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "This the time", Toast.LENGTH_LONG).show();
}

}

這個類需要繼承自BroadcastReceiver類,這裡有兩種方式來接收Intent的廣播事件,一是動態註冊一個Receiver;二是建立一個繼承自BroadcastReceiver的類,並在androidManifest.xml檔案中加入這個類的引用,如下的綠色字型

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

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".AlarmShowActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="AlarmReceiver">
</receiver>
</application>

3. 建立兩個Intent,一個是用於AlarmReceiver類處理的,一個是用於廣播的

Intent intent = new Intent(AlarmShowActivity.this, AlarmReceiver.class);                                
intent.setAction("ALARM_ACTION");
PendingIntent pendingIntent = PendingIntent.getBroadcast(AlarmShowActivity.this, 0, intent, 0);

4. 最後我們還要設定真正能讓alarm起作用的參數

am.set(AlarmManager.RTC_WAKEUP, _c.getTimeInMillis(), pendingIntent);
am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 10*1000, 60*60*1000, pendingIntent);

紅色字型的參數比較重要,這是設定alarm是以何種方式發生的,這裡用的是以UTC時間為基準,並在alarm發生時同時喚醒裝置的模式。更多的模式請參考這個連結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.