Android - How to create an intent to open an action that displays the Accounts and Sync screen

I saw the log message below while navigating the Account and Sync screen, but I'm confused about how to create an Intent to navigate there.

INFO/ActivityManager(53): Starting activity: Intent { cmp=com.android.providers.subscribedfeeds/com.android.settings.ManageAccountsSettings } 

I don't seem to have access to ManageAccountsSettings for development.

I just wanted to create an Intent, like below, but I can't call ManageAccountsSettings

 Intent i =new Intent(this,ManageAccountsSettings.class); //Then start the activity startActivity(intent); 
+7
android
source share
1 answer

You may be looking for this (untested)

 import android.provider.Settings; ctx.startActivity(new Intent(Settings.ACTION_SYNC_SETTINGS)); 
+30
source share

All Articles