Ejemplo n.º 1
0
        public static Intent NewIntent(Context context)
        {
            var intent = new Intent(context, typeof(HelloWorldActivity));

            intent.AddClearBackstackFlags();
            return(intent);
        }