Android - How to Create Intent to open the activity that displays the "Accounts & Sync settings" scr

Posted by bryan on Stack Overflow See other posts from Stack Overflow or by bryan
Published on 2010-06-09T21:31:18Z Indexed on 2010/06/09 21:52 UTC
Read the original article Hit count: 186

Filed under:

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);

© Stack Overflow or respective owner

Related posts about android