tags:

views:

100

answers:

1

I have seen the below log message when navigating to the Account & sync settings screen but I am confused as to how to create an Intent to navigate there.

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

I dont seem to have access to the ManageAccountsSettings for development.

I just wanted to create an Intent such as below, but I cant call out ManageAccountsSettings

Intent i =new Intent(this,ManageAccountsSettings.class); //Then start the activity startActivity(intent);

+2  A: 

Probably you are looking for this one (untested)

import android.provider.Settings;
ctx.startActivity(new Intent(Settings.ACTION_SYNC_SETTINGS));
Pentium10
Excellent, I guess it is going to take me time to figure out where to look for Actions that can be used for Intents.Thanks
bryan
@bryan Important on SO, you have to mark accepted answers by using the tick on the left of the posted answer, below the voting. This will increase your rate.
Pentium10