Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.ibc.android.demo.appslist.app;
- import android.app.ActivityManager;
- import android.app.AlarmManager;
- import android.app.PendingIntent;
- import android.app.Service;
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.content.IntentFilter;
- import android.content.SharedPreferences;
- import android.os.IBinder;
- import android.util.Log;
- import java.io.File;
- import java.util.ArrayList;
- import java.util.HashSet;
- import java.util.List;
- import java.util.Map;
- import java.util.Set;
- import java.util.Timer;
- import java.util.TimerTask;
- public class HeartBeat extends Service {
- private static final String TAG = HeartBeat.class.getSimpleName();
- public Timer TIMER;
- private static Set<AccessGranted> mAccessGrantedList = new HashSet<AccessGranted>();
- private Set<String> mLockedApps = new HashSet<String>();
- private long lastModified = 0;
- private BroadcastReceiver mScreenStateReceiver;
- private BroadcastReceiver mAccessGrantedReceiver;
- private File mLockedAppsFile;
- ArrayList<String> packagezList;
- SharedPreferences sharedPrefs;
- Map<String, ?> allEntries;
- SharedPreferences sharedPrefsapp;
- String prefix;
- @Override
- public IBinder onBind(Intent arg0) {
- return null;
- }
- @Override
- public int onStartCommand(Intent intent, int flags, int startId) {
- //startService(new Intent(this, HeartBeat.class));
- Intent ishintent = new Intent(this, HeartBeat.class);
- PendingIntent pintent = PendingIntent.getService(this, 0, ishintent, 0);
- AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
- alarm.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(),1000, pintent);
- // Log.i("LocalService", "Received start id " + startId + ": " +
- // intent);
- // We want this service to continue running until it is explicitly
- // stopped, so return sticky.
- mScreenStateReceiver = new BroadcastReceiver() {
- private boolean screenOff;
- @Override
- public void onReceive(Context context, Intent intent) {
- Intent ishintent = new Intent(context, HeartBeat.class);
- PendingIntent pintent = PendingIntent.getService(context, 0, ishintent, 0);
- AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
- alarm.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(),1000, pintent);
- if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
- screenOff = true;
- } else if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
- screenOff = false;
- }
- if (screenOff) {
- //Log.i(TAG, "Cancel Timer");
- TIMER.cancel();
- } else {
- // Log.i(TAG, "Restart Timer");
- TIMER = new Timer(true);
- TIMER.scheduleAtFixedRate(new LockAppsTimerTask(), 1000, 250);
- }
- }
- };
- IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_ON);
- filter.addAction(Intent.ACTION_SCREEN_OFF);
- registerReceiver(mScreenStateReceiver, filter);
- mAccessGrantedReceiver = new BroadcastReceiver() {
- @Override
- public void onReceive(Context context, Intent intent) {
- Intent ishintent = new Intent(context, HeartBeat.class);
- PendingIntent pintent = PendingIntent.getService(context, 0, ishintent, 0);
- AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
- alarm.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(),1000, pintent);
- String action = intent.getAction();
- String packageName = intent.getStringExtra("packageName");
- if (action.equals(Constants.ACTION_GRANT_ACCESS) && packageName != null) {
- AccessGranted ag = new AccessGranted(packageName);
- mAccessGrantedList.remove(ag);
- mAccessGrantedList.add(ag);
- }
- }
- };
- IntentFilter filter2 = new IntentFilter(Constants.ACTION_GRANT_ACCESS);
- registerReceiver(mAccessGrantedReceiver, filter2);
- // this.stopSelf();
- //startforeground goes here
- return START_STICKY;
- }
- @Override
- public void onDestroy() {
- super.onDestroy();
- //startService(new Intent(this, HeartBeat.class));
- Intent ishintent = new Intent(this, HeartBeat.class);
- PendingIntent pintent = PendingIntent.getService(this, 0, ishintent, 0);
- AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
- alarm.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(),1000, pintent);
- }
- private class LockAppsTimerTask extends TimerTask {
- @Override
- public void run() {
- sharedPrefs = getApplicationContext().getSharedPreferences(getApplicationContext().getPackageName(), Context.MODE_PRIVATE);
- sharedPrefsapp = getApplicationContext().getSharedPreferences("appdb", Context.MODE_PRIVATE);
- allEntries= null;
- allEntries = sharedPrefsapp.getAll();
- //prefix = "m";
- packagezList= null;
- packagezList = new ArrayList<String>();
- for (Map.Entry<String, ?> entry : allEntries.entrySet()) {
- //Log.e("right key: ", entry.getKey() + "right value: " + entry.getValue().toString() );
- packagezList.add(entry.getKey());
- }
- /* for (Map.Entry<String, ?> entry : allEntries.entrySet())
- {
- //Check if the package name starts with the prefix.
- if (entry.getKey().startsWith(prefix)) {
- //Add JUST the package name (trim off the prefix).
- packagezList.add(entry.getKey().substring(prefix.length()));
- packagezList.add(entry.getKey());
- }
- }*/
- for(Object object: packagezList){
- Log.e("YO!", (String) object);
- }
- ActivityManager activityManager = (ActivityManager) getApplicationContext().getSystemService(Context.ACTIVITY_SERVICE);
- try {
- //List<RecentTaskInfo> recentTasks = activityManager.getRecentTasks(1, ActivityManager.RECENT_IGNORE_UNAVAILABLE);
- ActivityManager mActivityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
- List<ActivityManager.RunningTaskInfo> RunningTask = mActivityManager
- .getRunningTasks(1);
- ActivityManager.RunningTaskInfo ar = RunningTask.get(0);
- String activityOnTop = ar.topActivity.getPackageName();
- // Log.e("activity on Top", "" + activityOnTop);
- // Log.e(" My package name", "" + getApplicationContext().getPackageName());
- //for (Object data : newArrayList) {
- for(Object object: packagezList){
- // Provide the packagename(s) of apps here, you want to show password activity
- if ((activityOnTop.contains((CharSequence) object)) &&
- (!activityOnTop.contains(getApplicationContext().getPackageName()
- ))) { // you have to make this check even better
- Intent i = new Intent(getApplicationContext(), LockScreenActivity.class);
- i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_NO_ANIMATION);
- i.putExtra( "", "");
- startActivity(i);
- }
- }
- } catch (Exception e) {
- // Log.e("Foreground App", e.getMessage(), e);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment