Programmatically starting the 'Add Account' activity in Android 2.2

前端 未结 6 1366
耶瑟儿~
耶瑟儿~ 2020-12-16 19:47

I\'ve been experimenting with the Android SDK over the past few days, in readiness to write an App for the store, however I\'ve run across a bit of a problem.

The Ap

6条回答
  •  暖寄归人
    2020-12-16 20:23

    The clue is in your shell command:

        Intent intent = new Intent();
        intent.setClassName( "com.google.android.gsf", "com.google.android.gsf.login.AccountIntroActivity" );
        context.startActivity( intent );
    

提交回复
热议问题