我正在开发锁定屏幕,我想在冰淇淋三明治和果冻豆中禁用主页按钮,我可以在 android 2.2、2.3 中使用以下方法阻止它
@Override
public void onAttachedToWindow() {
// TODO Auto-generate method stub
this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
super.onAttachedToWindow();
}
也试过这个
getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
在这里,我也没有通过onPause
Method 或onKeyDown
但是这些方法在 ICS 中对我不起作用,果冻豆如果有任何方法可以替代它,请告诉我