startActivity( new Intent(Settings.ACTION_SYNC_SETTINGS));
you can even strengthen the intention with additional ones so that only accounts that have adapters for these privileges are displayed:
String[] authorities = {"authority1", "authority2"}; Intent intent = new Intent(Settings.ACTION_SYNC_SETTINGS); intent.putExtra(Settings.EXTRA_AUTHORITIES, authorities);
source share