1. 开机或者在activity 的oncreate 方法中调用一下代码:
public static Boolean sleepBitcon = true;
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
while (true) {
try {
Thread.sleep(1000);
Log.d(TAG, "sleep 1 s");
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (sleepBitcon) {
synchronized (sleepBitcon) {
try {
sleepBitcon.wait(60000);
Log.d(TAG, "wait 60 s");
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
});
thread.start();
whille(true): 表示这线程是死循环,一直判断某个状态,而且如果状态不成立,就会 sleepBitcon.wait(60000);
2. 如果状态更新则通知线程唤醒:
synchronized (sleepBitcon) {
try {
if (sleepBitcon) {
Log.i(TAG, "thread revive");
sleepBitcon.notifyAll();
sleepBitcon = false;
}
} catch (Exception e) {
e.printStackTrace();
}
}
synchronized (sleepBitcon): 可以执行是因为当前的线程处于wait 状态,他将sleepBitcon这个锁释放掉了,所以其他的人如果想使用就可以正常的调用,唤醒。
3. 使当前的线程等待:
synchronized (sleepBitcon) {
try {
if (!sleepBitcon) {
Log.d(TAG, "thread pause");
sleepBitcon = true;
}
} catch (Exception e) {
e.printStackTrace();
}
}
synchronized (sleepBitcon) 可以调用是因为没有人持锁。