Android - How to Create Intent to open the activity that displays the “Accounts & Sync settings” screen

前端 未结 1 378
刺人心
刺人心 2021-02-03 14:06

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.

IN         


        
1条回答
  •  攒了一身酷
    2021-02-03 14:48

    Probably you are looking for this one (untested)

    import android.provider.Settings;
    ctx.startActivity(new Intent(Settings.ACTION_SYNC_SETTINGS));
    

    0 讨论(0)
提交回复
热议问题