예제 #1
0
        private void SignInDialog_onSignInComplete(object sender, OnSignInEventArgs e)
        {
            //ConnectivityPointer belegen
            setConnectivityStatus(OnOffService.Online);

            var intent = new Intent(this, typeof(ScheduleActivity));
            //Userinformationen mit übergeben
            userId = e.UserId;
            intent.PutExtra("User", userId.ToString());
            StartActivity(intent);
        }
예제 #2
0
        private void SignInDialog_onSignInComplete(object sender, OnSignInEventArgs e)
        {
            //ConnectivityPointer belegen
            setConnectivityStatus(OnOffService.Online);

            var intent = new Intent(this, typeof(ScheduleActivity));

            //Userinformationen mit übergeben
            userId = e.UserId;
            intent.PutExtra("User", userId.ToString());
            StartActivity(intent);
        }