我写了这段代码
WindowManager.LayoutParams params = getWindow().getAttributes();
params.flags |= LayoutParams.FLAG_KEEP_SCREEN_ON;
params.screenBrightness = 0.1F;
getWindow().setAttributes(params);
SystemClock.sleep(5000);
TextView Text01 = (TextView) findViewById(R.id.Text1);
Text01.setText("Hello");
设置屏幕亮度,然后在 5 秒后显示文本。问题是它会等待 5 秒,然后 Android 会调暗屏幕并同时输出文本。为什么它不能按顺序工作?谢谢