how to open Accessibility Settings of my app directly?

后端 未结 2 729
礼貌的吻别
礼貌的吻别 2021-02-04 16:20

As mentioned here: How can I start the Accessibility Settings Page of my APP in Android? I can open my app Accessibility Settings directly with this code:

Intent         


        
2条回答
  •  忘掉有多难
    2021-02-04 16:47

    Like so:

    Intent intent = new Intent(android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS);
    startActivityForResult(intent, 0);
    

提交回复
热议问题