我正在构建一个控制led灯泡的应用程序(Mi-Light,limitlessLed等)。该应用程序的目的是具有用户可以选择的效果,并让它无限期地运行。例如,“烛光”效果可能会或多或少随机地改变黄色和红色之间的灯泡颜色,直到用户决定停止。
快速背景信息:控制这些灯泡的方式是通过WiFi网络发送的UDP包。因此,即使设备处于休眠状态,我也需要应用程序继续发送此类UDP包。
经过一番研究后,我最终使用唤醒锁,以便让设备即使在睡觉时也能通过WiFi网络广播UDP包(请告诉我,如果有更好的方法,我没有发现约)。
一切都运行良好几分钟(可能是10?),直到设备看似进入某种深度睡眠模式并停止通过网络发送包。
如何防止这种情况发生?更一般地说,为了实现上述目的,我应该采取什么样的好方法?
仅供参考,这里是一个代码片段,它只旋转7种颜色的数组:
[...]
private static boolean animationRunning = false;
private Timer timer = new Timer();
private PowerManager mgr = (PowerManager)getReactApplicationContext().getSystemService(Context.POWER_SERVICE);
private PowerManager.WakeLock wakeLock = mgr.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "MyWakeLock");
[...]
public void startAnimation(final int step) {
animationRunning = true;
wakeLock.acquire();
final int[] steps = { 0, 66, 99, 122, 166, 199, 255 };
resetTimer();
timer.scheduleAtFixedRate(new TimerTask(){
int curstep = 0;
@Override
public void run(){
byte[] Bytes = {64, (byte)steps[curstep], 85};
try {sendUdp(Bytes);} catch(IOException e) {};
curstep = curstep + 1;
if(curstep == steps.length) {
curstep = 1;
}
}
},0,1000);
}
答案 0 :(得分:1)
我最终按照here
的说明实现了前台服务(startForeground())@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();
_acquireWakelock();
_showNotification();
[do your thing]
return START_REDELIVER_INTENT;
}
private void _showNotification() {
Intent notificationIntent = new Intent(this, MainActivity.class);
notificationIntent.setAction("com.lightcontrollerrn2.action.main");
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
Bitmap icon = BitmapFactory.decodeResource(getResources(),
R.mipmap.ic_launcher);
Notification notification = new NotificationCompat.Builder(this)
.setContentTitle("Light Controller")
.setTicker("Light Controller")
.setContentText("Light effects are running")
.setSmallIcon(R.mipmap.ic_launcher)
.setLargeIcon(Bitmap.createScaledBitmap(icon, 128, 128, false))
.setContentIntent(pendingIntent)
.setOngoing(true)
.build();
startForeground(1337,
notification);
}
我在路上发现了一些可能对其他人有帮助的事情:
前台服务仍然需要唤醒锁才能在设备空闲时继续运行;
您可能遇到类似问题的另一个原因是Android 6.0(https://developer.android.com/training/monitoring-device-state/doze-standby.html)中引入了新的Doze模式。在我的情况下,似乎服务保持运行足够长的时间而不需要我处理打瞌睡模式的设备(我测试了大约一个小时,我很高兴)。 编辑:为了完成,我也解决了这个问题。这是你如何做到的(在服务本身内):
@Override
public void onCreate() {
super.onCreate();
PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
String packageName = getPackageName();
if (Build.VERSION.SDK_INT >= 23 && !pm.isIgnoringBatteryOptimizations(packageName)) {
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS);
intent.setData(Uri.parse("package:" + packageName));
startActivity(intent);
}
}
答案 1 :(得分:0)
我可以通过两种方式来实现您的要求。
如果您可以将应用置于前台,则可以通过向活动添加android:keepScreenOn="true"
来阻止设备进入睡眠状态(有关详细信息,请参阅https://developer.android.com/training/scheduling/wakelock.html)。
第二种方法是伪造你的应用程序在后台播放音乐,因此不会被操作系统杀死。你可以只播放一个存储在你应用程序本地的无声mp3,并重复它无限的时间。在电池电量耗尽之前,操作系统永远不会杀死你的应用程序:)
希望它有所帮助。