Android app黑白名单

转载自:https://www.2cto.com/kf/201505/400664.html


Android app黑白名单

Android设备系统正常工作时,很多Service运行在后台,只用在系统内存不够使用时候,才会自动kill掉后台Service
Android OTT盒子项目开发中,网络机顶盒运行内存512M/1G 内存不够使用,为了提高系统的流畅性,编译固件时加入app黑白名单功能。

Android系统开机后会发出BroadcastReceiver开机广播,
在设置app 添加BootCompletedReceiverAML.java

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<code class = "language-java hljs " > public class BootCompletedReceiverAML extends BroadcastReceiver {
     public static final String TAG = "BootCompletedReceiverAML" ;
     public void onReceive(Context context, Intent intent) {
 
     initScreenSaver();
     initEnableRunningBackgroudComponents();
     initEnableAutoRunningComponents(); 
     initLauncherComponents();
     }
 
     //设置进入屏保黑白名单
     private void initScreenSaver() {
         Settings.System.putInt(mContext.getContentResolver(),
         Settings.System.BOOT_GUIDE_COMPLETED, 1 );
         IDreamManager mDreamManager = IDreamManager.Stub.asInterface(ServiceManager.getService(DreamService.DREAM_SERVICE));
         ComponentName dream = newComponentName( "com.mipt.screensaver" ,
                 "com.mipt.screensaver.ScreenSaverService" );
         try {
             ComponentName[] dreams = { dream };
             mDreamManager.setDreamComponents(dream == null ? null : dreams);
         }
         catch (RemoteException e) {
         }
 
         String dreamEnableComponentNames = "com.skyworthdigital.filexplorer/com.skyworthdigital.weather.main/com.skyworthdigital.ihome.settings/com.study.pumpkinstudy/com.android.dreams.phototable" ;
         Settings.System.putString(mContext.getContentResolver(),
         Settings.System.DREAM_ENABLE_COMPONENT,dreamEnableComponentNames);
 
         try {
             long currentTimeout = Settings.System.getLong(
                     mContext.getContentResolver(), SCREEN_OFF_TIMEOUT);
             if (currentTimeout < 0 ) {
                 Settings.System.putInt(mContext.getContentResolver(),
                         SCREEN_OFF_TIMEOUT, 2147483646 );
             }
             currentTimeout = Settings.System.getLong(
                     mContext.getContentResolver(), SCREEN_DREAM_TIMEOUT, - 1 );
             if (currentTimeout < 0 ) {
                 Settings.System.putInt(mContext.getContentResolver(),
                         SCREEN_DREAM_TIMEOUT, 240000 );
             }
 
         } catch (SettingNotFoundException e) {
             e.printStackTrace();
         }
     }
 
     // 使能自动运行在后台service
     private void initEnableRunningBackgroudComponents() {
         Settings.Secure.putString(mContext.getContentResolver(),
         Settings.Secure.ENABLE_RUNNING_BACKGROUD_COMPONENTS,
         "android/system/com.android/com.mipt/com.skyworth/com.google.android/com.skydigital/com.sky/com.starcor.hunan/com.explorer/com.slanissue.tv.erge/eu.chainfire.perfmon" );
     }
 
     //开机自动运行
     private void initEnableAutoRunningComponents() {
         Settings.Secure.putString(mContext.getContentResolver(),
         Settings.Secure.ENABLE_AUTO_LAUNCH_COMPONENTS,
         "com.android/android/system/com.mipt/com.skyworth/com.mipt.metro.launcher/com.skydigital/com.sky/com.starcor.hunan" );
     }
     //开机Launcher
     private void initLauncherComponents() {
         Settings.Secure.putString(mContext.getContentResolver(),
         Settings.Secure.ENABLE_LAUNCHER_COMPONENTS,
         "com.mipt.metro.launcher" );
     }
}   </code>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值