This question is very similar to this SO question .
I am currently using the code below so the user can set the page.
Intent dummyIntent = new Intent(android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS); startActivity(dummyIntent, 0);
But this displays the user only on the settings page. The following is shown in fig. 
Instead, I would like to go to the settings page of my application, where he has the opportunity to enable it and show a description of my application.

source share