1. 程式人生 > >android 鎖屏狀態下顯示activity

android 鎖屏狀態下顯示activity

在activity onCreate下新增 
int flags = WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
getWindow().addFlags(flags);
WindowManager.LayoutParams params = getWindow().getAttributes();
params.systemUiVisibility = View.SYSTEM_UI_FLAG_LOW_PROFILE;

getWindow().setAttributes(params);

即可。這段程式碼要放在setContentView()前。