1

我的问题是,手机睡眠模式的 API 是什么,如果手机在几分钟内没有使用,它会进入睡眠模式,对吗?那么Android开发的编程部分是什么?

4

1 回答 1

2

看看PowerManager及其内部类PowerManager.WakeLock。例如,为了防止某些代码休眠,用

PowerManager pm = (PowerManager) SJPhone.getContext().getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(flags,WAKE_LOCK_STR);
wl.acquire();

// you code goes here

wl.release();
wl = null;
于 2012-03-05T17:34:53.597 回答