- 1、本文档共2页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
使用AlarmManager搭配Receiver应该可以实现定时自动启动应用程序:
public class Main extends Activity {
public final String MT_ACTION = ent.action.START_MY_APP;
Button bt;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
bt = (Button)findViewById(R.id.bt);
bt.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Main.this.finish();
}
});
AlarmManager am = (AlarmManager)Main.this.getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(MT_ACTION);
PendingIntent pi = PendingIntent.getBroadcast(this, 0, intent, 1);
am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()+3500, pi);
}
}
复制代码
Manifext如下:
?xml version=1.0 encoding=utf-8?
manifest xmlns:android=/apk/res/android
package=com.vancl.startapp
android:versionCode=1
android:versionName=1.0
uses-sdk android:minSdkVersion=8 /
application android:icon=@drawable/icon android:label=@string/app_name
activity android:name=.Main
android:label=@string/app_name
intent-filter
action android:name=ent.action.MAIN /
category android:name=ent.category.LAUNCHER /
/intent-filter
/activity
receiver android:name=AlarmReceiver
intent-filter
action android:name=ent.action.START_MY_APP/
/intent-filter
/receiver
/application
/manifest
复制代码
Receiver如下:
package com.vancl.startapp;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class AlarmReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
Intent it = new Intent();
it.setClass(context, Ma
您可能关注的文档
- WORD中如何设置页眉页脚.doc
- Word中的公式编辑器.doc
- word中的替换功能大全.doc
- WORD中的钢筋符号特殊符号.doc
- WORD中艺术字、自选图形、图片、文本框的组合.doc
- word中项目编号的用法.docx
- Word使用之贺卡的制作.doc
- WORD使用技巧大全2.docx
- word分隔符使用方法技巧.doc
- Word常用符号快捷键使用方法.docx
- 吉安县公开招聘专职文明实践员笔试备考试题及答案解析.docx
- 2025重庆枫叶国际学校招聘教师笔试备考试题及答案解析.docx
- 游机队电玩自制联网教程-tplink.pdf
- 2025重庆新华出版集团招聘1人笔试模拟试题及答案解析.docx
- 2025宜宾高新丽雅城市产业发展有限公司公开招聘笔试模拟试题及答案解析.docx
- 2025云南保山市龙陵县勐糯镇人民政府招聘合同制专职消防员1人笔试模拟试题及答案解析.docx
- 11.1生活中常见的盐 九年级化学人教版下册.pptx
- 6.1法律保护下的婚姻 高二政治《法律与生活》课件(统编版选择性必修2)(新版).pptx
- 文昌市中小学教师校园招聘29人笔试模拟试题及答案解析.docx
- 10.1.5 常见的酸和碱(第5课时)课件-九年级化学人教版下册.pptx
文档评论(0)