示例#1
0
        private void CheckProfile(object sender, ShowProfileArgs e)
        {
            Toast.MakeText(Activity, "showig profile of a user " + e.username, ToastLength.Long).Show();

            Intent intent = new Intent(Context, typeof(FriendProfileView)).SetFlags(ActivityFlags.ReorderToFront);

            this.StartActivity(intent);
        }
示例#2
0
        private void OnRecog(object sender, ShowProfileArgs e)
        {
            Intent intent = new Intent(this.Activity, typeof(FriendProfileView)).SetFlags(ActivityFlags.ReorderToFront);

            this.StartActivity(intent);
        }