且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

开始重新启动后意图

更新时间:2022-10-25 16:02:09

在你的清单:

 <服务机器人:出口=false的机器人:名字=机器人service.YourService:启用=真正的>< /服务>
        <接收机器人:名字=。service.YourBootReceiver>
            &所述;意图滤光器>
                <作用机器人:名字=android.intent.action.BOOT_COMPLETED/>
            &所述; /意图滤光器>
        < /接收器>

此外,在清单中添加权限:

 <使用许可权的android:NAME =android.permission.RECEIVE_BOOT_COMPLETED/>

YourBootReceiver:

 公共类YourBootReceiver扩展广播接收器{    @覆盖
    公共无效的onReceive(上下文为arg0,ARG1意向){
        意图serviceIntent =新意图(arg0中,YourService.class);
        arg0.startService(serviceIntent);
    }

I have a GPS Service that gets GPS position every 60 seconds. It's working okay, but it doesn't do anything after phone reboot. I tried adding this in a BroadcastReceiver that is working after reboot but nothing happens. Any help would be great; I just need to load my Intents after reboot.

//Start intents after reboot
        if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {
            context.startService(new Intent(context, DashboardActivity.class));
        }

GPSActivity.java

public int onStartCommand(Intent intent, int flags, int startId) {

    //Toast.makeText(getBaseContext(), "Service Started", Toast.LENGTH_SHORT).show();

    final Runnable r = new Runnable() {
        public void run() {
            Log.v("GPS_TRACKER", "Run Start");
            location();
            handler.postDelayed(this, 60000);
        }
    };
    handler.postDelayed(r, 60000);
    return START_STICKY;
}

Manifest

<!-- GPS Activity -->
    <service android:enabled="true" android:name=".GPSActivity">  
     <intent-filter>  
        <action android:name="com.ni.androidtrack.GPSActivity"/>
        <action android:name="android.intent.action.BOOT_COMPLETED"/>
     </intent-filter>  
    </service> 

<!-- Also permission for RECEIVE_BOOT_COMPLETED -->
 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

In your manifest:

<service android:exported="false" android:name=".service.YourService" android:enabled="true"></service>
        <receiver android:name=".service.YourBootReceiver">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED"/>
            </intent-filter>
        </receiver> 

Also add permission in manifest:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

YourBootReceiver:

public class YourBootReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context arg0, Intent arg1) {
        Intent serviceIntent = new Intent(arg0, YourService.class);
        arg0.startService(serviceIntent);
    }