想要在我点击设备中的主页按钮时打开设备的设置我尝试了这段代码,但是当应用程序开始自动打开设备设置时
@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();
this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
startActivityForResult(new Intent(android.provider.Settings.ACTION_SETTINGS), 0);
}
如何仅在单击主页键时使此代码打开设备的设置?