1.
public class AlarmActivity extends Activity implements OnClickListener {
private Button b_call_service, b_exit_service;
private Intent intent;
private PendingIntent p_intent;
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
b_call_service = (Button) findViewById(R.id.call_alarm_service);
b_call_service.setOnClickListener(this);
b_exit_service = (Button) findViewById(R.id.exit);
b_exit_service.setOnClickListener(this);
intent = new Intent(this, AlarmReceiver.class);
p_intent = PendingIntent.getBroadcast(this, 0, intent, 0);
}
public void onClick(View arg0) {
if (arg0 == b_call_service) {
setTitle("Waiting... 5s后Alarm启动");
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(System.currentTimeMillis());
calendar.add(Calendar.SECOND, 5);
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), p_intent);
}
if (arg0 == b_exit_service) {
setTitle("Alarm关闭");
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.cancel(p_intent);
}
}
}
public class AlarmReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent i) {
context.startService(new Intent(context, AlarmService.class));
}
}
public class AlarmService extends Service {
public IBinder onBind(Intent intent) {
return null;
}
public void onCreate() {
// 只在创建时执行一次
}
public void onStart(Intent intent, int startId) {
// 可执行多次
Toast.makeText(this, "hello 土豆", Toast.LENGTH_LONG).show();
}
}
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name="AlarmActivity" 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" />
<service android:name="AlarmService" />
</application>
2.
分享到:
相关推荐
本主题将深入探讨如何使用Service以及BroadcastReceiver来实现特定的功能:当Service检测到某个函数的状态变化时,通过Broadcast发送通知,进而启动一个新的Activity。 首先,让我们了解`Service`。在Android中,...
我们通常会配合`PendingIntent`来使用`AlarmManager`,`PendingIntent`是一个意图,当触发时会执行特定的操作,如启动Service、发送Broadcast等。 以下是创建闹钟服务的基本步骤: 1. 创建Service类,继承自`...
六、 onRestart:如果一个已经停止的Activity重新回到前台,系统会先调用onRestart(),然后onStart(),最后onResume()。这是Activity生命周期中从停止状态恢复到可见状态的过程。 七、 onDestroy:当Activity不再...
- **事件响应**: `StartupIntentReceiver` 是一个 BroadcastReceiver,它监听 BOOT_COMPLETED 广播事件,当设备启动完成时会触发这个事件,此时 `StartupIntentReceiver` 会启动 `AutoSyncService`,确保设备启动后...
- **作用**: `$apply()` 方法的主要作用是通知 AngularJS 应用程序一个新的事件(例如来自用户输入)已经发生,并且需要更新模型或视图。 - **触发上下文**: 当在 AngularJS 应用之外(比如在浏览器的定时器或异步...
此外,为了便于开发和调试,还提供了一个PC模拟器,可以在Windows平台上模拟OSL服务,从而帮助开发者在PC端测试MMI任务。 - **数据类型**:MTK定义了通用的数据类型,如`Kal_non_specific_general_types.h`,这些...
首先,AlarmManager实际上是一个全局的定时器,它的主要功能是设置在未来某一时间点或按照一定周期执行特定任务。它具有系统级别的特性,即使设备在休眠状态下,设定的闹钟依然可以唤醒设备执行任务。当然,如果设置...
- **定义**: Android是由Google主导开发的一个基于Linux内核的开源移动操作系统。 - **架构**: - 核心层(Core Libraries): 提供关键系统服务,如内存管理、进程管理等。 - Linux内核(Linux Kernel): 负责硬件抽象...
本篇文章将深入探讨AngularJS中的内存泄漏现象,通过分析一个名为"private-leaking-investigation"的示例应用程序来揭示其原因,并提供相应的解决策略。 首先,我们需要理解什么是内存泄漏。在计算机科学中,内存...