RunAppOnStartupBroadcastReceiver.java
Go to the documentation of this file.
1 /*
2  * Copyright 2017 Intermodalics All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package eu.intermodalics.tango_ros_streamer.android;
18 
19 import android.content.BroadcastReceiver;
20 import android.content.Context;
21 import android.content.Intent;
22 import android.content.SharedPreferences;
23 import android.preference.PreferenceManager;
24 
27 
28 public class RunAppOnStartupBroadcastReceiver extends BroadcastReceiver {
29  @Override
30  public void onReceive(Context context, Intent intent) {
31  SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
32  boolean runAtBoot = sharedPreferences.getBoolean(context.getString(R.string.pref_run_at_device_boot_key), false);
33  if (runAtBoot && intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
34  Intent startRunningActivityIntent = new Intent(context, RunningActivity.class);
35  startRunningActivityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
36  context.startActivity(startRunningActivityIntent);
37  }
38  }
39 }


TangoRosStreamer
Author(s):
autogenerated on Mon Jun 10 2019 15:37:54