如何在主页按钮上打开设备设置 - android

时间:2014-04-14 15:08:21

标签: android setting home-button

想要在我点击设备中的主页按钮时打开设备的设置我尝试了这段代码,但是当应用程序开始自动打开设备设置时

        @Override
    public void onAttachedToWindow() {
       super.onAttachedToWindow();
       this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD); 
       startActivityForResult(new Intent(android.provider.Settings.ACTION_SETTINGS), 0);
    }

如何仅在单击主页键时使此代码打开设备的设置?

0 个答案:

没有答案