Example #1
0
        public static Intent GotoIntent(Context context)
        {
            var intent = new Intent();

            intent.SetClassName(context, ManifestNames.GetName <ConfigActivity>());
            return(intent);
        }
        public static Intent AddIntent(Context context)
        {
            var intent = new Intent();

            intent.SetClassName(context, ManifestNames.GetName <EditPortfolioActivity>());
            return(intent);
        }
        public static Intent EditIntent(Context context, long portfolioId)
        {
            var intent = new Intent();

            intent.SetClassName(context, ManifestNames.GetName <EditPortfolioActivity>());
            intent.PutExtra(PORTFOLIOIDEXTRA, portfolioId);
            return(intent);
        }