0

This way perfectly opened summmary settings from my preferences.

<Preference android:title="@string/open_settings" >
    <intent android:action="android.settings.SETTINGS"/>
</Preference>

How to open Device Admin settings fragment?

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
Serge
  • 1
  • 1
  • maybe this will [help](https://stackoverflow.com/questions/49739998/how-to-open-up-phones-settings-page-through-preferences) – Erik Feb 13 '19 at 14:37

1 Answers1

0

Simply call the Intent manually

startActivityForResult(new Intent(android.provider.Settings.ACTION_SETTINGS), 0);

Reference