`
hw3com
  • 浏览: 57025 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

android开机启动android.intent.action.BOOT_COMPLETED

阅读更多
android开机启动android.intent.action.BOOT_COMPLETED

遇到一个问题,就是开机启动我只需要第一次,类似于开机向导一样的功能

但是每次开机的时候都会接受这个BOOT_COMPLETED

这样会有一个开机的进程,这种属于资源浪费。

我们可以setComponentEnabledSetting,节约资源。
1
0
分享到:
评论
2 楼 hw3com 2012-10-29  
lerous 写道
对于这个问题
引用
就是开机启动我只需要第一次,类似于开机向导一样的功能

能详细说下,setComponentEnabledSetting
对这个有什么用吗?~


设置了是否处于可用.

具体可以看源码
1 楼 lerous 2012-05-24  
对于这个问题
引用
就是开机启动我只需要第一次,类似于开机向导一样的功能

能详细说下,setComponentEnabledSetting
对这个有什么用吗?~

相关推荐

    Android 屏幕唤醒 + 屏幕解锁 + 开机服务监听(android.intent.action.BOOT-COMPLET)

    Android 屏幕唤醒 + 屏幕解锁 + 开机服务监听(android.intent.action.BOOT_COMPLET)添加权限:{//开机监听<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/><uses-permission android...

    实现开机自启动服务

    if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) { Intent serviceIntent = new Intent(context, AutoStartService.class); context.startService(serviceIntent); } } } ``` 4. *...

    Intent.action_大全

    - **Action**:"android.intent.action.BOOT_COMPLETED" - **示例**:常用于实现开机自启动功能,例如后台服务或定时任务的初始化。 7. **BROWSABLE_CATEGORY** - **描述**:此Category表示Activity可以被...

    testBOOT_COMPLETED如何在开机时即启动程序

    <action android:name="android.intent.action.BOOT_COMPLETED" /> <action android:name="com.test.testBOOT_COMPLETED" /> <!-- 自定义广播 --> </intent-filter> ``` 注意,为了监听`ACTION_BOOT_COMPLETED`...

    android 系统中的几乎所有广播接收者

    BOOT_COMPLETED_ACTION 在系统启动后,这个动作被广播一次(只有一次) "android.intent.action.BOOT_COMPLETED" CALL_FORWARDING_STATE_CHANGED_ACTION 语音电话的呼叫转移状态已经改变 "android.intent.action.CFF" ...

    android手机开机自动启动程序源码.pdf

    在Android系统中,开机自启动程序的实现主要是通过BroadcastReceiver监听系统的特定广播事件,比如`ACTION_BOOT_COMPLETED`,然后在接收到这个广播后启动应用程序。下面将详细解释如何实现这一功能。 首先,我们...

    制作android安卓开机自启动的app.zip

    综上所述,制作一个Android开机自启动应用涉及的主要知识点包括BroadcastReceiver的使用、ACTION_BOOT_COMPLETED广播的监听、权限的申请、服务的启动以及针对不同Android版本的适配。通过以上步骤,你可以创建一个在...

    Android学习之Service开机启动

    - **原理**:当设备启动完成后,系统会自动发送名为`android.intent.action.BOOT_COMPLETED`的广播。 - **注意**:该广播只会被发送一次,即在设备启动完成后。 **2. 创建IntentReceiver类** - **目的**:创建一个...

    android应用开机自启动

    <action android:name="android.intent.action.BOOT_COMPLETED"/> </intent-filter> ``` 静态注册的广播接收器在应用安装后即可生效,无需用户手动开启,但需要在Android 8.0及以上版本中获取`RECEIVE_BOOT_...

    后台保持运行,开机后自动启动设定好的APK_android实现开机自动启动源码.zip

    if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) { Intent serviceIntent = new Intent(context, MyService.class); context.startService(serviceIntent); } } } ``` **三、权限设置** 在...

    android开机自启动APP及使用adb命令测试方法

    Android系统在启动完成后,会发出“android.intent.action.BOOT_COMPLETED”这个系统广播,我们可以监听这个广播,并在其回调函数中启动我们想要的应用程序。 AndroidManifest.xml文件中需要添加以下权限和广播接收...

    Android 广播大全 Intent Action 事件.

    5. Intent.ACTION_BOOT_COMPLETED:在系统启动完成后,系统会发出此广播,通知相关应用程序进行相应的处理。 知识点:系统启动完成是 Android 系统中的一种特殊事件,应用程序可以在这个事件中进行初始化和启动操作...

    【Android】开机自启动2

    if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) { // 这里启动你的服务或者Activity } } } ``` 4. **注意事项**: 自启动服务可能会消耗电池,因此在Android 8.0(API级别26)及以上版本,系统...

    android开机启动service.pdf

    if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) { Intent i = new Intent(context, ServiceTest.class); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startService(i); } ...

    android 开机启动自己的应用

    总结,通过BroadcastReceiver监听ACTION_BOOT_COMPLETED广播,并在接收到广播后启动服务或Activity,可以实现Android应用的开机启动功能。同时,需要注意权限的申请和系统对后台服务的限制,以确保应用的正常运行。

    android 开机启动DEMO

    if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) { // 启动Service Intent serviceIntent = new Intent(context, StartupService.class); context.startService(serviceIntent); } } } ``` ...

    delphi XE android 开机启动代码

    if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) { // 这里启动你的应用服务或者直接启动主Activity Intent i = new Intent(context, YourMainActivity.class); i.addFlags(Intent.FLAG_ACTIVITY...

    【Android】开机自启动Service

    if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) { // 在这里启动Service Intent serviceIntent = new Intent(context, AutoRunService.class); context.startForegroundService(serviceIntent);...

    Android 开机自启动应用

    <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> ``` 3. 自启动应用的实现: - 创建BroadcastReceiver:首先,你需要创建一个BroadcastReceiver类,重写`onReceive()`方法...

Global site tag (gtag.js) - Google Analytics